Class SortedLimitedList<TKey, TValue>.ValueList
Inheritance
System.Object
SortedLimitedList<TKey, TValue>.ValueList
Implements
System.Collections.Generic.IList<TValue>
System.Collections.Generic.ICollection<TValue>
System.Collections.Generic.IEnumerable<TValue>
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 ValueList : IList<TValue>, ICollection<TValue>, IEnumerable<TValue>, 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 TValue this[int index] { get; set; }
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index |
Property Value
Type | Description |
---|---|
TValue |
Methods
| Improve this Doc View SourceAdd(TValue)
Declaration
public void Add(TValue key)
Parameters
Type | Name | Description |
---|---|---|
TValue | key |
Clear()
Declaration
public void Clear()
Contains(TValue)
Declaration
public bool Contains(TValue value)
Parameters
Type | Name | Description |
---|---|---|
TValue | value |
Returns
Type | Description |
---|---|
System.Boolean |
CopyTo(TValue[], Int32)
Declaration
public void CopyTo(TValue[] array, int arrayIndex)
Parameters
Type | Name | Description |
---|---|---|
TValue[] | array | |
System.Int32 | arrayIndex |
GetEnumerator()
Declaration
public IEnumerator<TValue> GetEnumerator()
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerator<TValue> |
IndexOf(TValue)
Declaration
public int IndexOf(TValue value)
Parameters
Type | Name | Description |
---|---|---|
TValue | value |
Returns
Type | Description |
---|---|
System.Int32 |
Insert(Int32, TValue)
Declaration
public void Insert(int index, TValue value)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | |
TValue | value |
Remove(TValue)
Declaration
public bool Remove(TValue value)
Parameters
Type | Name | Description |
---|---|---|
TValue | value |
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 index)
Parameters
Type | Name | Description |
---|---|---|
System.Array | array | |
System.Int32 | index |
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