Interface IArray<T>
Interface to access a collections as an array. Mainly used for twodimensional array to access rows or columns as simple array
without copying the contents. Or access a twodimensional array as a one dimensional array.
Inherited Members
System.Collections.Generic.IEnumerable<T>.GetEnumerator()
Assembly: CADability.dll
Syntax
public interface IArray<T> : IEnumerable<T>, IEnumerable
Type Parameters
Properties
|
Improve this Doc
View Source
First
Declaration
Property Value
|
Improve this Doc
View Source
Item[Int32]
Declaration
T this[int index] { get; set; }
Parameters
| Type |
Name |
Description |
| System.Int32 |
index |
|
Property Value
|
Improve this Doc
View Source
Last
Declaration
Property Value
|
Improve this Doc
View Source
Length
Declaration
Property Value
| Type |
Description |
| System.Int32 |
|
Methods
|
Improve this Doc
View Source
ToArray()
Declaration
Returns