Copies the elements in the Set to an array.  The type of array needs
            to be compatible with the objects in the Set, obviously. Needed for 
            non-generic ISet methods implementation
            
Namespace: Iesi.Collections.GenericAssembly: Iesi.Collections (in Iesi.Collections.dll) Version: 1.0.1.0 (3.2.0.4000)
 Syntax
Syntax
| C# | 
|---|
| protected override void NonGenericCopyTo(
	Array array,
	int index
) | 
| Visual Basic | 
|---|
| Protected Overrides Sub NonGenericCopyTo ( _
	array As Array, _
	index As Integer _
) | 
| Visual C++ | 
|---|
| protected:
virtual void NonGenericCopyTo(
	Array^ array, 
	int index
) override | 
 See Also
See Also