IArray_DG Interface
A standalone array can be created with a IObjectGenerator_DG.Create<IArray_DG>() call.
All indices in DG Kenel are 0-based
Properties
- int Count { get; }
Methods
- IsEmpty
- GetAt
- SetAt
- InsertAt
- Add
- RemoveAt
- RemoveAll
- Find
- Copy
- Append
bool IsEmpty()
Object GetAt(int index)
void SetAt(int index, Object val)
void InsertAt(int indexAt, Object val)
void Add(Object val)
void RemoveAt(int index)
void RemoveAll()
int Find(Object val)
Returns -1 if not found
void Copy(IArray_DG iArray)
void Append(IArray_DG iArray)
|