Is there a generic container implementing the 'set' behaviour in .NET?
I know I could just use a Dictionary<T, Object>
(and possibly add nulls
as values), because its keys act as a set, but I was curious if there's something ready-made.
Is there a generic container implementing the 'set' behaviour in .NET?
I know I could just use a Dictionary<T, Object>
(and possibly add nulls
as values), because its keys act as a set, but I was curious if there's something ready-made.