What would be the best .NET 2.0 type to represent .NET 3.5 HashSet<T>?
Posted
by Will Marcouiller
on Stack Overflow
See other posts from Stack Overflow
or by Will Marcouiller
Published on 2010-05-12T18:13:59Z
Indexed on
2010/05/12
18:14 UTC
Read the original article
Hit count: 326
I'm writing myself a class library to manage Active Directory.
I have an interface:
Public Interface ISourceAnnuaire(Of T as {IGroupe, ITop, IUniteOrganisation, IUtilisateur})
Readonly Property Changements As Dictionary(Of T, HashSet(Of String))
End Interface
This Changements property is used to save in memory the changes that occur on a particular element that is part of the source.
However, I am stuck with .NET Framework 2.0. What would be the closest .NET 2.0 for HashSet(Of String)?
© Stack Overflow or respective owner