0
Write a Consile Program arrays
To accept 5 employee numbers store into one array and accept 5 employee names store into another array and search employee name based on employee number
2 Answers
+ 1
Dictionary<int, string> employees = new Dictionary<int, string>();
0
what you want is a dictionary