Skip to content

Instantly share code, notes, and snippets.

@lgolubyev
Created November 21, 2022 16:45
Embed
What would you like to do?
List<Employee> employees = new();
Employee emp1 = new Employee { Name = "Stefan", Skills = new List<string> {"C", "C++", "Java"}};
Employee emp2 = new Employee { Name = "Karan", Skills = new List<string> {"SQL Server", "C#", "ASP.NET"}};
Employee emp3 = new Employee { Name = "Lalit", Skills = new List<string> {"C#", "ASP.NET MVC", "Windows Azure", "SQL Server"}};
employees.Add(emp1);
employees.Add(emp2);
employees.Add(emp3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment