static private List<KeyValuePair<string, Employee>> employeesList = new List<KeyValuePair<string, Employee>>();
This is my generic KeyValuePair
List that stores employee objects with employeeid
as key.
How to get value i.e Employee
object with the help of the string key.