Class SortedArray<T>
Inheritance
System.Object
SortedArray<T>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Assembly: SIPSorcery.dll
Syntax
public class SortedArray<T>
Type Parameters
Constructors
|
Improve this Doc
View Source
SortedArray()
Declaration
Properties
|
Improve this Doc
View Source
Count
Declaration
public int Count { get; }
Property Value
Type |
Description |
System.Int32 |
|
|
Improve this Doc
View Source
First
Declaration
Property Value
|
Improve this Doc
View Source
Item[Int32]
Declaration
public T this[int index] { get; set; }
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
Property Value
|
Improve this Doc
View Source
Last
Declaration
Property Value
Methods
|
Improve this Doc
View Source
Add(T)
Declaration
Parameters
Type |
Name |
Description |
T |
item |
|
|
Improve this Doc
View Source
AddToList(List<T>)
Declaration
public void AddToList(List<T> array)
Parameters
Type |
Name |
Description |
System.Collections.Generic.List<T> |
array |
|
|
Improve this Doc
View Source
Clear()
Declaration
|
Improve this Doc
View Source
GetEnumerator()
Declaration
public SortedArray<T>.SortedArrayEnumerator GetEnumerator()
Returns
|
Improve this Doc
View Source
Remove(T)
Declaration
public void Remove(T item)
Parameters
Type |
Name |
Description |
T |
item |
|
|
Improve this Doc
View Source
RemoveWhere(Func<T, Boolean>)
Declaration
public void RemoveWhere(Func<T, bool> f)
Parameters
Type |
Name |
Description |
System.Func<T, System.Boolean> |
f |
|
Extension Methods