Interface IArray2D<T>
Interface to a two-dimensional array.
Inherited Members
Namespace: Microsoft.ML.Probabilistic.Collections
Assembly: Microsoft.ML.Probabilistic.dll
Syntax
public interface IArray2D<T> : IArray<T>, IList<T>, ICollection<T>, IEnumerable<T>, IEnumerable
Type Parameters
| Name | Description |
|---|---|
| T |
Properties
Item[Int32, Int32]
Get or set an element of a two-dimensional array.
Declaration
T this[int row, int column] { get; set; }
Parameters
| Type | Name | Description |
|---|---|---|
| Int32 | row | |
| Int32 | column |
Property Value
| Type | Description |
|---|---|
| T |