Here is a bit of a quiz: What does this program print?
using System; using System.Collections.Generic; class Person { public String Name { get; set; } } class Example { static void Main() { var people = new List<Person> { [...]
Here is a bit of a quiz: What does this program print?
using System; using System.Collections.Generic; class Person { public String Name { get; set; } } class Example { static void Main() { var people = new List<Person> { [...]