System.Collections.SortedList.CopyTo C# (CSharp) Method

CopyTo() public method

public CopyTo ( System array, int arrayIndex ) : void
array System
arrayIndex int
return void
        public virtual void CopyTo(System.Array array, int arrayIndex) { }
        public virtual object GetByIndex(int index) { throw null; }

Same methods

SortedList::CopyTo ( Array array, int arrayIndex ) : void

Usage Example

Example #1
0
 public override void CopyTo(Array array, int index)
 {
     lock (_root)
     {
         _list.CopyTo(array, index);
     }
 }
All Usage Examples Of System.Collections.SortedList::CopyTo