LINQ Equivalent query
- by GilliVilla
I have a
List<string>
List<string> students;
students.Add("123Rob");
students.Add("234Schulz");
and a
Dictionary<string,string>
Dictionary<string, string> courses = new Dictionary<string, string>();
courses .Add("Rob", "Chemistry");
courses .Add("Bob", "Math");
courses .Add("Holly", "Physics"); …