Show / Hide Table of Contents

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()
Namespace: CADability
Assembly: CADability.dll
Syntax
public interface IArray<T> : IEnumerable<T>, IEnumerable
Type Parameters
Name Description
T

Properties

| Improve this Doc View Source

First

Declaration
T First { get; set; }
Property Value
Type Description
T
| Improve this Doc View Source

Item[Int32]

Declaration
T this[int index] { get; set; }
Parameters
Type Name Description
System.Int32 index
Property Value
Type Description
T
| Improve this Doc View Source

Last

Declaration
T Last { get; set; }
Property Value
Type Description
T
| Improve this Doc View Source

Length

Declaration
int Length { get; }
Property Value
Type Description
System.Int32

Methods

| Improve this Doc View Source

ToArray()

Declaration
T[] ToArray()
Returns
Type Description
T[]
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX