diff --git a/Program.cs b/Program.cs index 1cd022c..7108e23 100644 --- a/Program.cs +++ b/Program.cs @@ -61,28 +61,28 @@ class Program } } } - static double Somma(double operatore1, double operatore2) { + static double Somma(double p_operatore1, double p_operatore2) { double risultato; - risultato=operatore1+operatore2; + risultato=p_operatore1+p_operatore2; return risultato; } - static double Differenza(double operatore1, double operatore2) { + static double Differenza(double p_operatore1, double p_operatore2) { double risultato; - risultato=operatore1-operatore2; + risultato=p_operatore1-p_operatore2; return risultato; } - static double Prodotto(double operatore1, double operatore2) { + static double Prodotto(double p_operatore1, double p_operatore2) { double risultato; - risultato=operatore1*operatore2; + risultato=p_operatore1*p_operatore2; return risultato; } - static string Quoziente(double operatore1, double operatore2) { + static string Quoziente(double p_operatore1, double p_operatore2) { string risultato; - if(operatore2==0){//gestione della divisione per zero + if(p_operatore2==0){//gestione della divisione per zero return "error"; } else{ - risultato=Convert.ToString(operatore1/operatore2); + risultato=Convert.ToString(p_operatore1/p_operatore2); return risultato; } } diff --git a/bin/Debug/net9.0/calcolatrice.dll b/bin/Debug/net9.0/calcolatrice.dll index c42dfe1..345246d 100644 Binary files a/bin/Debug/net9.0/calcolatrice.dll and b/bin/Debug/net9.0/calcolatrice.dll differ diff --git a/bin/Debug/net9.0/calcolatrice.pdb b/bin/Debug/net9.0/calcolatrice.pdb index 9f7e8f9..5240df1 100644 Binary files a/bin/Debug/net9.0/calcolatrice.pdb and b/bin/Debug/net9.0/calcolatrice.pdb differ diff --git a/obj/Debug/net9.0/calcolatrice.AssemblyInfo.cs b/obj/Debug/net9.0/calcolatrice.AssemblyInfo.cs index 84a98d1..5c4cf47 100644 --- a/obj/Debug/net9.0/calcolatrice.AssemblyInfo.cs +++ b/obj/Debug/net9.0/calcolatrice.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("calcolatrice")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+81aee42076c07c4c339197485cbd47a851e6dddf")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+1759e6dafc4e5449ac9d6ac747bb193f4929b477")] [assembly: System.Reflection.AssemblyProductAttribute("calcolatrice")] [assembly: System.Reflection.AssemblyTitleAttribute("calcolatrice")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/obj/Debug/net9.0/calcolatrice.AssemblyInfoInputs.cache b/obj/Debug/net9.0/calcolatrice.AssemblyInfoInputs.cache index 1ecf551..7b3d527 100644 --- a/obj/Debug/net9.0/calcolatrice.AssemblyInfoInputs.cache +++ b/obj/Debug/net9.0/calcolatrice.AssemblyInfoInputs.cache @@ -1 +1 @@ -0fa6a2a533d06ae21ae65e08e83ea81139a4541d35132c49b55ca4b3fef5af4c +cb4065fd7e7d08d82741142fde1129e9d537673ea9e0ce9eca317fe0b0551f5b diff --git a/obj/Debug/net9.0/calcolatrice.dll b/obj/Debug/net9.0/calcolatrice.dll index c42dfe1..345246d 100644 Binary files a/obj/Debug/net9.0/calcolatrice.dll and b/obj/Debug/net9.0/calcolatrice.dll differ diff --git a/obj/Debug/net9.0/calcolatrice.pdb b/obj/Debug/net9.0/calcolatrice.pdb index 9f7e8f9..5240df1 100644 Binary files a/obj/Debug/net9.0/calcolatrice.pdb and b/obj/Debug/net9.0/calcolatrice.pdb differ diff --git a/obj/Debug/net9.0/ref/calcolatrice.dll b/obj/Debug/net9.0/ref/calcolatrice.dll index 051a3aa..f977d13 100644 Binary files a/obj/Debug/net9.0/ref/calcolatrice.dll and b/obj/Debug/net9.0/ref/calcolatrice.dll differ diff --git a/obj/Debug/net9.0/refint/calcolatrice.dll b/obj/Debug/net9.0/refint/calcolatrice.dll index 051a3aa..f977d13 100644 Binary files a/obj/Debug/net9.0/refint/calcolatrice.dll and b/obj/Debug/net9.0/refint/calcolatrice.dll differ