Class NonNullableList<T>
Inheritance
NonNullableList<T>
Syntax
public class NonNullableList<T> : IList<T>, ICollection<T>, IEnumerable<T>, IList, ICollection, IEnumerable
Type Parameters
Constructors
NonNullableList()
Declaration
NonNullableList(IEnumerable<T>)
Declaration
public NonNullableList(IEnumerable<T> collection)
Parameters
NonNullableList(Int32)
Declaration
public NonNullableList(int capacity)
Parameters
Type |
Name |
Description |
Int32 |
capacity |
|
Properties
Count
Declaration
public int Count { get; }
Property Value
IsFixedSize
Declaration
public bool IsFixedSize { get; }
Property Value
IsReadOnly
Declaration
public bool IsReadOnly { get; }
Property Value
IsSynchronized
Declaration
public bool IsSynchronized { get; }
Property Value
Item[Int32]
Declaration
public T this[int index] { get; set; }
Parameters
Type |
Name |
Description |
Int32 |
index |
|
Property Value
SyncRoot
Declaration
public object SyncRoot { get; }
Property Value
Methods
Add(T)
Declaration
Parameters
Type |
Name |
Description |
T |
item |
|
Add(Object)
Declaration
public int Add(object value)
Parameters
Type |
Name |
Description |
Object |
value |
|
Returns
AddRange(IEnumerable<T>)
Declaration
public void AddRange(IEnumerable<T> collection)
Parameters
Clear()
Declaration
Contains(T)
Declaration
public bool Contains(T item)
Parameters
Type |
Name |
Description |
T |
item |
|
Returns
Contains(Object)
Declaration
public bool Contains(object value)
Parameters
Type |
Name |
Description |
Object |
value |
|
Returns
CopyTo(T[], Int32)
Declaration
public void CopyTo(T[] array, int arrayIndex)
Parameters
Type |
Name |
Description |
T[] |
array |
|
Int32 |
arrayIndex |
|
CopyTo(Array, Int32)
Declaration
public void CopyTo(Array array, int index)
Parameters
GetEnumerator()
Declaration
public IEnumerator<T> GetEnumerator()
Returns
IndexOf(T)
Declaration
public int IndexOf(T item)
Parameters
Type |
Name |
Description |
T |
item |
|
Returns
IndexOf(Object)
Declaration
public int IndexOf(object value)
Parameters
Type |
Name |
Description |
Object |
value |
|
Returns
Insert(Int32, T)
Declaration
public void Insert(int index, T item)
Parameters
Type |
Name |
Description |
Int32 |
index |
|
T |
item |
|
Insert(Int32, Object)
Declaration
public void Insert(int index, object value)
Parameters
Remove(T)
Declaration
public bool Remove(T item)
Parameters
Type |
Name |
Description |
T |
item |
|
Returns
Remove(Object)
Declaration
public void Remove(object value)
Parameters
Type |
Name |
Description |
Object |
value |
|
RemoveAt(Int32)
Declaration
public void RemoveAt(int index)
Parameters
Type |
Name |
Description |
Int32 |
index |
|
Extension Methods