Class SortedLimitedList<TKey, TValue>.KeyList
Inheritance
System.Object
SortedLimitedList<TKey, TValue>.KeyList
Implements
System.Collections.Generic.IList<TKey>
System.Collections.Generic.ICollection<TKey>
System.Collections.Generic.IEnumerable<TKey>
System.Collections.ICollection
System.Collections.IEnumerable
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()
Namespace: AltV.Net.EntitySync.SpatialPartitions
Assembly: AltV.Net.EntitySync.dll
Syntax
[Serializable]
public sealed class KeyList : IList<TKey>, ICollection<TKey>, IEnumerable<TKey>, ICollection, IEnumerable
Properties
| Improve this Doc View SourceCount
Declaration
public int Count { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
IsReadOnly
Declaration
public bool IsReadOnly { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Item[Int32]
Declaration
public TKey this[int index] { get; set; }
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index |
Property Value
Type | Description |
---|---|
TKey |
Methods
| Improve this Doc View SourceAdd(TKey)
Declaration
public void Add(TKey key)
Parameters
Type | Name | Description |
---|---|---|
TKey | key |
Clear()
Declaration
public void Clear()
Contains(TKey)
Declaration
public bool Contains(TKey key)
Parameters
Type | Name | Description |
---|---|---|
TKey | key |
Returns
Type | Description |
---|---|
System.Boolean |
CopyTo(TKey[], Int32)
Declaration
public void CopyTo(TKey[] array, int arrayIndex)
Parameters
Type | Name | Description |
---|---|---|
TKey[] | array | |
System.Int32 | arrayIndex |
GetEnumerator()
Declaration
public IEnumerator<TKey> GetEnumerator()
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerator<TKey> |
IndexOf(TKey)
Declaration
public int IndexOf(TKey key)
Parameters
Type | Name | Description |
---|---|---|
TKey | key |
Returns
Type | Description |
---|---|
System.Int32 |
Insert(Int32, TKey)
Declaration
public void Insert(int index, TKey value)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | |
TKey | value |
Remove(TKey)
Declaration
public bool Remove(TKey key)
Parameters
Type | Name | Description |
---|---|---|
TKey | key |
Returns
Type | Description |
---|---|
System.Boolean |
RemoveAt(Int32)
Declaration
public void RemoveAt(int index)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index |
Explicit Interface Implementations
| Improve this Doc View SourceICollection.CopyTo(Array, Int32)
Declaration
void ICollection.CopyTo(Array array, int arrayIndex)
Parameters
Type | Name | Description |
---|---|---|
System.Array | array | |
System.Int32 | arrayIndex |
ICollection.IsSynchronized
Declaration
bool ICollection.IsSynchronized { get; }
Returns
Type | Description |
---|---|
System.Boolean |
ICollection.SyncRoot
Declaration
object ICollection.SyncRoot { get; }
Returns
Type | Description |
---|---|
System.Object |
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type | Description |
---|---|
System.Collections.IEnumerator |
Implements
System.Collections.Generic.IList<T>
System.Collections.Generic.ICollection<T>
System.Collections.Generic.IEnumerable<T>
System.Collections.ICollection
System.Collections.IEnumerable