Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Method: void Add(T)

  • Declared in: RT.Util.Collections.ListSorted<T>
  • Implements: ICollection<T>.Add(T)

Declaration

public void Add(
    T item
)

Summary

Adds the specified item to the list. The item is added at the appropriate location to keep the list sorted. If multiple equal items are stored, this method is guaranteed to add an item at the end of the equal items run. This method is O(N).