diff --git a/Calciatore.cs b/Calciatore.cs
index a97a102..6059de8 100644
--- a/Calciatore.cs
+++ b/Calciatore.cs
@@ -1,5 +1,28 @@
namespace oggetti_2;
class Calciatore {
+ readonly string name;
+ readonly string surname;
+ readonly int age;
+ readonly int weight;
+ readonly string role;
+ public readonly int number;
-}
\ No newline at end of file
+ public Calciatore(string name, string surname, int age, int weight, string role, int number) {
+ this.name = name;
+ this.surname = surname;
+ this.age = age;
+ this.weight = weight;
+ this.role = role;
+ this.number = number;
+ }
+
+ public void MostraCalciatore() {
+ Console.WriteLine($"Nome: {this.name}");
+ Console.WriteLine($"Cognome: {this.surname}");
+ Console.WriteLine($"Età: {this.age}");
+ Console.WriteLine($"Peso: {this.weight}");
+ Console.WriteLine($"Ruolo: {this.role}");
+ Console.WriteLine($"Numero di maglia: {this.number}");
+ }
+}
diff --git a/Program.cs b/Program.cs
index c6b25b3..ab507bc 100644
--- a/Program.cs
+++ b/Program.cs
@@ -1,9 +1,228 @@
namespace oggetti_2;
-class Program
-{
- static void Main(string[] args)
- {
- Console.WriteLine("Hello, World!");
+class Program {
+ static void Main(string[] args) {
+ Console.Clear();
+ int scelta;
+ bool isFound;
+ Squadra squadra = CreaSquadra();
+ Console.Clear();
+ do {
+ Console.WriteLine("Scegliere un'opzione:");
+ Console.WriteLine("1. Mostra squadra");
+ Console.WriteLine("2. Mostra giocatore per numero maglia");
+ Console.WriteLine("0. Esci");
+ Console.Write("Scelta: ");
+ scelta = Convert.ToInt32(Console.ReadLine());
+
+ switch (scelta) {
+ case 0:
+ break;
+ case 1:
+ Console.Clear();
+ squadra.MostraSquadra();
+ Pausa();
+ break;
+ case 2:
+ Console.Clear();
+ isFound = false;
+ Console.Write("Inserire il numero di maglia da mostrare: ");
+ scelta = Convert.ToInt32(Console.ReadLine());
+ for (int i = 0; i < squadra.giocatori.Length && !isFound; i++) {
+ if (squadra.giocatori[i].number == scelta) {
+ squadra.giocatori[i].MostraCalciatore();
+ isFound = true;
+ }
+ }
+ if (!isFound) {
+ Console.WriteLine("Numero maglia non trovato.");
+ }
+ Pausa();
+ break;
+ }
+ }
+ while (scelta != 0);
+
+ }
+
+ static void Pausa() {
+ Console.WriteLine("Premere un tasto per continuare. . .");
+ Console.ReadKey();
+ Console.Clear();
+ }
+ static Squadra CreaSquadra() {
+ string name;
+ string surname;
+ int age;
+ int weight;
+ string role;
+ int number;
+ Calciatore capitano;
+ Calciatore centrocampista;
+ Calciatore attaccanteDestro;
+ Calciatore attaccanteSinistro;
+ Calciatore esternoDestro;
+ Calciatore esternoSinistro;
+ Calciatore terzinoDestro;
+ Calciatore terzinoSinistro;
+ Calciatore difensore;
+ Calciatore portiere;
+ string teamName;
+ string location;
+ double budget;
+ int matchesWon;
+ int matchesLost;
+
+ Console.Write("Inserire il nome della squadra: ");
+ teamName = Console.ReadLine();
+ Console.Write("Inserire il luogo della squadra: ");
+ location = Console.ReadLine();
+ Console.Write("Inserire il budget della squadra: ");
+ budget = Convert.ToDouble(Console.ReadLine());
+ Console.Write("Inserire le partite vinte dalla squadra: ");
+ matchesWon = Convert.ToInt32(Console.ReadLine());
+ Console.Write("Inserire le partite perse dalla squadra: ");
+ matchesLost = Convert.ToInt32(Console.ReadLine());
+
+ role = "capitano";
+ Console.Write("Inserire il nome del capitano: ");
+ name = Console.ReadLine();
+ Console.Write("Inserire il cognome del capitano: ");
+ surname = Console.ReadLine();
+ Console.Write("Inserire l'età del capitano: ");
+ age = Convert.ToInt32(Console.ReadLine());
+ Console.Write("Inserire il peso del capitano: ");
+ weight = Convert.ToInt32(Console.ReadLine());
+ Console.Write("Inserire il numero di maglia del capitano: ");
+ number = Convert.ToInt32(Console.ReadLine());
+ capitano = new Calciatore(name, surname, age, weight, role, number);
+
+
+ role = "centrocampista";
+ Console.Write("Inserire il nome del centrocampista: ");
+ name = Console.ReadLine();
+ Console.Write("Inserire il cognome del centrocampista: ");
+ surname = Console.ReadLine();
+ Console.Write("Inserire l'età del centrocampista: ");
+ age = Convert.ToInt32(Console.ReadLine());
+ Console.Write("Inserire il peso del centrocampista: ");
+ weight = Convert.ToInt32(Console.ReadLine());
+ Console.Write("Inserire il numero di maglia del centrocampista: ");
+ number = Convert.ToInt32(Console.ReadLine());
+ centrocampista = new Calciatore(name, surname, age, weight, role, number);
+
+
+ role = "attaccanteDestro";
+ Console.Write("Inserire il nome dell'attaccante destro: ");
+ name = Console.ReadLine();
+ Console.Write("Inserire il cognome dell'attaccante destro: ");
+ surname = Console.ReadLine();
+ Console.Write("Inserire l'età dell'attaccante destro: ");
+ age = Convert.ToInt32(Console.ReadLine());
+ Console.Write("Inserire il peso dell'attaccante destro: ");
+ weight = Convert.ToInt32(Console.ReadLine());
+ Console.Write("Inserire il numero di maglia dell'attaccante destro: ");
+ number = Convert.ToInt32(Console.ReadLine());
+ attaccanteDestro = new Calciatore(name, surname, age, weight, role, number);
+
+
+ role = "attaccanteSinistro";
+ Console.Write("Inserire il nome dell'attaccante sinistro: ");
+ name = Console.ReadLine();
+ Console.Write("Inserire il cognome dell'attaccante sinistro: ");
+ surname = Console.ReadLine();
+ Console.Write("Inserire l'età dell'attaccante sinistro: ");
+ age = Convert.ToInt32(Console.ReadLine());
+ Console.Write("Inserire il peso dell'attaccante sinistro: ");
+ weight = Convert.ToInt32(Console.ReadLine());
+ Console.Write("Inserire il numero di maglia dell'attaccante sinistro: ");
+ number = Convert.ToInt32(Console.ReadLine());
+ attaccanteSinistro = new Calciatore(name, surname, age, weight, role, number);
+
+
+ role = "esternoDestro";
+ Console.Write("Inserire il nome dell'esterno destro: ");
+ name = Console.ReadLine();
+ Console.Write("Inserire il cognome dell'esterno destro: ");
+ surname = Console.ReadLine();
+ Console.Write("Inserire l'età dell'esterno destro: ");
+ age = Convert.ToInt32(Console.ReadLine());
+ Console.Write("Inserire il peso dell'esterno destro: ");
+ weight = Convert.ToInt32(Console.ReadLine());
+ Console.Write("Inserire il numero di maglia dell'esterno destro: ");
+ number = Convert.ToInt32(Console.ReadLine());
+ esternoDestro = new Calciatore(name, surname, age, weight, role, number);
+
+
+ role = "esternoSinistro";
+ Console.Write("Inserire il nome dell'esterno sinistro: ");
+ name = Console.ReadLine();
+ Console.Write("Inserire il cognome dell'esterno sinistro: ");
+ surname = Console.ReadLine();
+ Console.Write("Inserire l'età dell'esterno sinistro: ");
+ age = Convert.ToInt32(Console.ReadLine());
+ Console.Write("Inserire il peso dell'esterno sinistro: ");
+ weight = Convert.ToInt32(Console.ReadLine());
+ Console.Write("Inserire il numero di maglia dell'esterno sinistro: ");
+ number = Convert.ToInt32(Console.ReadLine());
+ esternoSinistro = new Calciatore(name, surname, age, weight, role, number);
+
+
+ role = "terzinoDestro";
+ Console.Write("Inserire il nome del terzino destro: ");
+ name = Console.ReadLine();
+ Console.Write("Inserire il cognome del terzino destro: ");
+ surname = Console.ReadLine();
+ Console.Write("Inserire l'età del terzino destro: ");
+ age = Convert.ToInt32(Console.ReadLine());
+ Console.Write("Inserire il peso del terzino destro: ");
+ weight = Convert.ToInt32(Console.ReadLine());
+ Console.Write("Inserire il numero di maglia del terzino destro: ");
+ number = Convert.ToInt32(Console.ReadLine());
+ terzinoDestro = new Calciatore(name, surname, age, weight, role, number);
+
+
+ role = "terzinoSinistro";
+ Console.Write("Inserire il nome del terzino sinistro: ");
+ name = Console.ReadLine();
+ Console.Write("Inserire il cognome del terzino sinistro: ");
+ surname = Console.ReadLine();
+ Console.Write("Inserire l'età del terzino sinistro: ");
+ age = Convert.ToInt32(Console.ReadLine());
+ Console.Write("Inserire il peso del terzino sinistro: ");
+ weight = Convert.ToInt32(Console.ReadLine());
+ Console.Write("Inserire il numero di maglia del terzino sinistro: ");
+ number = Convert.ToInt32(Console.ReadLine());
+ terzinoSinistro = new Calciatore(name, surname, age, weight, role, number);
+
+
+ role = "difensore";
+ Console.Write("Inserire il nome del difensore: ");
+ name = Console.ReadLine();
+ Console.Write("Inserire il cognome del difensore: ");
+ surname = Console.ReadLine();
+ Console.Write("Inserire l'età del difensore: ");
+ age = Convert.ToInt32(Console.ReadLine());
+ Console.Write("Inserire il peso del difensore: ");
+ weight = Convert.ToInt32(Console.ReadLine());
+ Console.Write("Inserire il numero di maglia del difensore: ");
+ number = Convert.ToInt32(Console.ReadLine());
+ difensore = new Calciatore(name, surname, age, weight, role, number);
+
+
+ role = "portiere";
+ Console.Write("Inserire il nome del portiere: ");
+ name = Console.ReadLine();
+ Console.Write("Inserire il cognome del portiere: ");
+ surname = Console.ReadLine();
+ Console.Write("Inserire l'età del portiere: ");
+ age = Convert.ToInt32(Console.ReadLine());
+ Console.Write("Inserire il peso del portiere: ");
+ weight = Convert.ToInt32(Console.ReadLine());
+ Console.Write("Inserire il numero di maglia del portiere: ");
+ number = Convert.ToInt32(Console.ReadLine());
+ portiere = new Calciatore(name, surname, age, weight, role, number);
+
+ return new Squadra(capitano, centrocampista, attaccanteDestro, attaccanteSinistro, esternoDestro, esternoSinistro, terzinoDestro, terzinoSinistro, difensore, portiere, teamName, location, budget, matchesWon, matchesLost);
}
}
diff --git a/Squadra.cs b/Squadra.cs
index 22a13cf..67754f2 100644
--- a/Squadra.cs
+++ b/Squadra.cs
@@ -1,5 +1,79 @@
namespace oggetti_2;
class Squadra {
+ public readonly Calciatore[] giocatori;
+ readonly Calciatore capitano;
+ readonly Calciatore centrocampista;
+ readonly Calciatore attaccanteDestro;
+ readonly Calciatore attaccanteSinistro;
+ readonly Calciatore esternoDestro;
+ readonly Calciatore esternoSinistro;
+ readonly Calciatore terzinoDestro;
+ readonly Calciatore terzinoSinistro;
+ readonly Calciatore difensore;
+ readonly Calciatore portiere;
+ readonly string name;
+ readonly string location;
+ readonly double budget;
+ readonly int matchesWon;
+ readonly int matchesLost;
+ public Squadra(Calciatore capitano, Calciatore centrocampista, Calciatore attaccanteDestro, Calciatore attaccanteSinistro, Calciatore esternoDestro, Calciatore esternoSinistro, Calciatore terzinoDestro, Calciatore terzinoSinistro, Calciatore difensore, Calciatore portiere, string name, string location, double budget, int matchesWon, int matchesLost) {
+ this.capitano = capitano;
+ this.centrocampista = centrocampista;
+ this.attaccanteDestro = attaccanteDestro;
+ this.attaccanteSinistro = attaccanteSinistro;
+ this.esternoDestro = esternoDestro;
+ this.esternoSinistro = esternoSinistro;
+ this.terzinoDestro = terzinoDestro;
+ this.terzinoSinistro = terzinoSinistro;
+ this.difensore = difensore;
+ this.portiere = portiere;
+ this.name = name;
+ this.location = location;
+ this.budget = budget;
+ this.matchesWon = matchesWon;
+ this.matchesLost = matchesLost;
+ this.giocatori = new Calciatore[10];
+ this.giocatori[0] = capitano;
+ this.giocatori[1] = centrocampista;
+ this.giocatori[2] = attaccanteDestro;
+ this.giocatori[3] = attaccanteSinistro;
+ this.giocatori[4] = esternoDestro;
+ this.giocatori[5] = esternoSinistro;
+ this.giocatori[6] = terzinoDestro;
+ this.giocatori[7] = terzinoSinistro;
+ this.giocatori[8] = difensore;
+ this.giocatori[9] = portiere;
+ }
+
+ public void MostraSquadra() {
+ Console.WriteLine($"Nome: {this.name}");
+ Console.WriteLine($"Luogo: {this.location}");
+ Console.WriteLine($"Budget: {this.budget}");
+ Console.WriteLine($"Partite vinte: {this.matchesWon}");
+ Console.WriteLine($"Partite perse: {this.matchesLost}");
+ Console.WriteLine("Giocatori:");
+
+ Console.WriteLine();
+ this.capitano.MostraCalciatore();
+ Console.WriteLine();
+ this.centrocampista.MostraCalciatore();
+ Console.WriteLine();
+ this.attaccanteDestro.MostraCalciatore();
+ Console.WriteLine();
+ this.attaccanteSinistro.MostraCalciatore();
+ Console.WriteLine();
+ this.esternoDestro.MostraCalciatore();
+ Console.WriteLine();
+ this.esternoSinistro.MostraCalciatore();
+ Console.WriteLine();
+ this.terzinoDestro.MostraCalciatore();
+ Console.WriteLine();
+ this.terzinoSinistro.MostraCalciatore();
+ Console.WriteLine();
+ this.difensore.MostraCalciatore();
+ Console.WriteLine();
+ this.portiere.MostraCalciatore();
+ }
}
\ No newline at end of file
diff --git a/bin/Debug/net9.0/oggetti_2 b/bin/Debug/net9.0/oggetti_2
new file mode 100755
index 0000000..3f37b98
Binary files /dev/null and b/bin/Debug/net9.0/oggetti_2 differ
diff --git a/bin/Debug/net9.0/oggetti_2.deps.json b/bin/Debug/net9.0/oggetti_2.deps.json
new file mode 100644
index 0000000..936de95
--- /dev/null
+++ b/bin/Debug/net9.0/oggetti_2.deps.json
@@ -0,0 +1,23 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v9.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v9.0": {
+ "oggetti_2/1.0.0": {
+ "runtime": {
+ "oggetti_2.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "oggetti_2/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/bin/Debug/net9.0/oggetti_2.dll b/bin/Debug/net9.0/oggetti_2.dll
new file mode 100644
index 0000000..3dc4a48
Binary files /dev/null and b/bin/Debug/net9.0/oggetti_2.dll differ
diff --git a/bin/Debug/net9.0/oggetti_2.pdb b/bin/Debug/net9.0/oggetti_2.pdb
new file mode 100644
index 0000000..c9fce7a
Binary files /dev/null and b/bin/Debug/net9.0/oggetti_2.pdb differ
diff --git a/bin/Debug/net9.0/oggetti_2.runtimeconfig.json b/bin/Debug/net9.0/oggetti_2.runtimeconfig.json
new file mode 100644
index 0000000..b19c3c8
--- /dev/null
+++ b/bin/Debug/net9.0/oggetti_2.runtimeconfig.json
@@ -0,0 +1,12 @@
+{
+ "runtimeOptions": {
+ "tfm": "net9.0",
+ "framework": {
+ "name": "Microsoft.NETCore.App",
+ "version": "9.0.0"
+ },
+ "configProperties": {
+ "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..9e76325
--- /dev/null
+++ b/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")]
diff --git a/obj/Debug/net9.0/apphost b/obj/Debug/net9.0/apphost
new file mode 100755
index 0000000..3f37b98
Binary files /dev/null and b/obj/Debug/net9.0/apphost differ
diff --git a/obj/Debug/net9.0/oggetti_2.AssemblyInfo.cs b/obj/Debug/net9.0/oggetti_2.AssemblyInfo.cs
new file mode 100644
index 0000000..16da2f0
--- /dev/null
+++ b/obj/Debug/net9.0/oggetti_2.AssemblyInfo.cs
@@ -0,0 +1,22 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("oggetti_2")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+b2956650939ba52b18b69c61406cc67633199346")]
+[assembly: System.Reflection.AssemblyProductAttribute("oggetti_2")]
+[assembly: System.Reflection.AssemblyTitleAttribute("oggetti_2")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/obj/Debug/net9.0/oggetti_2.AssemblyInfoInputs.cache b/obj/Debug/net9.0/oggetti_2.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..7ee0e29
--- /dev/null
+++ b/obj/Debug/net9.0/oggetti_2.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+a2dd44f99e09aff72ba800656ba41222cfc89bcedb09722431397f5413d7cdae
diff --git a/obj/Debug/net9.0/oggetti_2.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net9.0/oggetti_2.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..3439c8c
--- /dev/null
+++ b/obj/Debug/net9.0/oggetti_2.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,15 @@
+is_global = true
+build_property.TargetFramework = net9.0
+build_property.TargetPlatformMinVersion =
+build_property.UsingMicrosoftNETSdkWeb =
+build_property.ProjectTypeGuids =
+build_property.InvariantGlobalization =
+build_property.PlatformNeutralAssembly =
+build_property.EnforceExtendedAnalyzerRules =
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace = oggetti_2
+build_property.ProjectDir = /home/Verde/git/oggetti_2/
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
+build_property.EffectiveAnalysisLevelStyle = 9.0
+build_property.EnableCodeStyleSeverity =
diff --git a/obj/Debug/net9.0/oggetti_2.GlobalUsings.g.cs b/obj/Debug/net9.0/oggetti_2.GlobalUsings.g.cs
new file mode 100644
index 0000000..8578f3d
--- /dev/null
+++ b/obj/Debug/net9.0/oggetti_2.GlobalUsings.g.cs
@@ -0,0 +1,8 @@
+//
+global using global::System;
+global using global::System.Collections.Generic;
+global using global::System.IO;
+global using global::System.Linq;
+global using global::System.Net.Http;
+global using global::System.Threading;
+global using global::System.Threading.Tasks;
diff --git a/obj/Debug/net9.0/oggetti_2.assets.cache b/obj/Debug/net9.0/oggetti_2.assets.cache
new file mode 100644
index 0000000..4050c16
Binary files /dev/null and b/obj/Debug/net9.0/oggetti_2.assets.cache differ
diff --git a/obj/Debug/net9.0/oggetti_2.csproj.CoreCompileInputs.cache b/obj/Debug/net9.0/oggetti_2.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..9bbcf5e
--- /dev/null
+++ b/obj/Debug/net9.0/oggetti_2.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+f43b104458d3fa2475f19c3992682e7baabcbe56021e8ef03fd194b28cb3bd53
diff --git a/obj/Debug/net9.0/oggetti_2.csproj.FileListAbsolute.txt b/obj/Debug/net9.0/oggetti_2.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..3692004
--- /dev/null
+++ b/obj/Debug/net9.0/oggetti_2.csproj.FileListAbsolute.txt
@@ -0,0 +1,14 @@
+/home/Verde/git/oggetti_2/bin/Debug/net9.0/oggetti_2
+/home/Verde/git/oggetti_2/bin/Debug/net9.0/oggetti_2.deps.json
+/home/Verde/git/oggetti_2/bin/Debug/net9.0/oggetti_2.runtimeconfig.json
+/home/Verde/git/oggetti_2/bin/Debug/net9.0/oggetti_2.dll
+/home/Verde/git/oggetti_2/bin/Debug/net9.0/oggetti_2.pdb
+/home/Verde/git/oggetti_2/obj/Debug/net9.0/oggetti_2.GeneratedMSBuildEditorConfig.editorconfig
+/home/Verde/git/oggetti_2/obj/Debug/net9.0/oggetti_2.AssemblyInfoInputs.cache
+/home/Verde/git/oggetti_2/obj/Debug/net9.0/oggetti_2.AssemblyInfo.cs
+/home/Verde/git/oggetti_2/obj/Debug/net9.0/oggetti_2.csproj.CoreCompileInputs.cache
+/home/Verde/git/oggetti_2/obj/Debug/net9.0/oggetti_2.dll
+/home/Verde/git/oggetti_2/obj/Debug/net9.0/refint/oggetti_2.dll
+/home/Verde/git/oggetti_2/obj/Debug/net9.0/oggetti_2.pdb
+/home/Verde/git/oggetti_2/obj/Debug/net9.0/oggetti_2.genruntimeconfig.cache
+/home/Verde/git/oggetti_2/obj/Debug/net9.0/ref/oggetti_2.dll
diff --git a/obj/Debug/net9.0/oggetti_2.dll b/obj/Debug/net9.0/oggetti_2.dll
new file mode 100644
index 0000000..3dc4a48
Binary files /dev/null and b/obj/Debug/net9.0/oggetti_2.dll differ
diff --git a/obj/Debug/net9.0/oggetti_2.genruntimeconfig.cache b/obj/Debug/net9.0/oggetti_2.genruntimeconfig.cache
new file mode 100644
index 0000000..5d1437d
--- /dev/null
+++ b/obj/Debug/net9.0/oggetti_2.genruntimeconfig.cache
@@ -0,0 +1 @@
+1496373d1878eaa9cd68f837653dfa0d3707828e2d40b2cec630bff5d4f2ada4
diff --git a/obj/Debug/net9.0/oggetti_2.pdb b/obj/Debug/net9.0/oggetti_2.pdb
new file mode 100644
index 0000000..c9fce7a
Binary files /dev/null and b/obj/Debug/net9.0/oggetti_2.pdb differ
diff --git a/obj/Debug/net9.0/ref/oggetti_2.dll b/obj/Debug/net9.0/ref/oggetti_2.dll
new file mode 100644
index 0000000..2d8a1fa
Binary files /dev/null and b/obj/Debug/net9.0/ref/oggetti_2.dll differ
diff --git a/obj/Debug/net9.0/refint/oggetti_2.dll b/obj/Debug/net9.0/refint/oggetti_2.dll
new file mode 100644
index 0000000..2d8a1fa
Binary files /dev/null and b/obj/Debug/net9.0/refint/oggetti_2.dll differ