[Solved] Associate array of different types in C#
[ad_1] A way to do this in C#: I don’t claim this the best way, but it gives an idea. using System; using System.Collections; using System.Collections.ObjectModel; namespace ShowNames { class Program { static void Main(string[] args) { Console.WriteLine(“Hello World!”); var People = new Collection<Person>() { new Person() { Name = “Jack”, Age = 24, AverageGrade … Read more