System.Collections.HashMap.ValuesCollection.CopyTo C# (CSharp) Method

CopyTo() public method

public CopyTo ( Array array, int arrayIndex ) : void
array System.Array
arrayIndex int
return void
            public virtual void CopyTo(Array array, int arrayIndex) {
                if (m.hasNullKey) {
                    values.CopyTo(array, arrayIndex + 1);
#if !dotNETMF
                    array.SetValue(m.valueOfNullKey, arrayIndex);
#else
                    ((IList)array)[arrayIndex] = m.valueOfNullKey;
#endif
                }
                else {
                    values.CopyTo(array, arrayIndex);
                }
            }
            public virtual IEnumerator GetEnumerator() {