Class ArrayColumn<T>
Convert a column of a 2 dimensional array to a one dimensional array (without copying the data)
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: CADability
Assembly: CADability.dll
Syntax
public class ArrayColumn<T> : IArrayImpl<T>, IArray<T>, IEnumerable<T>, IEnumerable
Type Parameters
| Name | Description |
|---|---|
| T |
Constructors
| Improve this Doc View SourceArrayColumn(T[,], Int32)
Declaration
public ArrayColumn(T[, ] a, int ind)
Parameters
| Type | Name | Description |
|---|---|---|
| T[,] | a | |
| System.Int32 | ind |
Properties
| Improve this Doc View SourceItem[Int32]
Declaration
public override T this[int index] { get; set; }
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | index |
Property Value
| Type | Description |
|---|---|
| T |
Overrides
CADability.IArrayImpl<T>.Item[System.Int32]
|
Improve this Doc
View Source
Length
Declaration
public override int Length { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 |
Overrides
CADability.IArrayImpl<T>.Length
Implements
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable