Is there collection object in C# .NET?
C#
2
Posts
2
Posters
0
Views
1
Watching
-
Is there a collection object in the C# .NET framework. I need an object that contains a list of objects indexed by another object? E.g. A list of type Employee indexed on string name where name = Employee.name
-
Is there a collection object in the C# .NET framework. I need an object that contains a list of objects indexed by another object? E.g. A list of type Employee indexed on string name where name = Employee.name
Use
HashTable
look at HashTable Class[^] For more Info MCAD