Class ObjectList
- Namespace
- DevExpress.Xpo.Helpers
- Assembly
- DevExpress.Xpo.v24.1.dll
public class ObjectList : IList, ICollection, IEnumerable
- Inheritance
-
ObjectList
- Implements
-
- Inherited Members
-
Constructors
ObjectList()
ObjectList(ICollection)
public ObjectList(ICollection fillBy)
Parameters
fillBy
ICollection
ObjectList(int)
public ObjectList(int suggestedSize)
Parameters
suggestedSize
int
Fields
List
Field Value
- IList
TerminalSize
public const int TerminalSize = 128
Field Value
- int
Properties
Count
public int Count { get; }
Property Value
- int
IsFixedSize
public bool IsFixedSize { get; }
Property Value
- bool
IsReadOnly
public bool IsReadOnly { get; }
Property Value
- bool
IsSynchronized
public bool IsSynchronized { get; }
Property Value
- bool
this[int]
public object this[int index] { get; set; }
Parameters
index
int
Property Value
- object
SyncRoot
public object SyncRoot { get; }
Property Value
- object
Methods
Add(object)
public int Add(object value)
Parameters
value
object
Returns
- int
Clear()
Contains(object)
public bool Contains(object value)
Parameters
value
object
Returns
- bool
CopyTo(Array, int)
public void CopyTo(Array array, int index)
Parameters
array
Array
index
int
GetEnumerator()
public IEnumerator GetEnumerator()
Returns
- IEnumerator
IndexOf(object)
public int IndexOf(object value)
Parameters
value
object
Returns
- int
Insert(int, object)
public void Insert(int index, object value)
Parameters
index
int
value
object
Remove(object)
public void Remove(object value)
Parameters
value
object
RemoveAt(int)
public void RemoveAt(int index)
Parameters
index
int