Array2DColumnEnumerable<T>(T[,], Int32) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the Array2DColumnEnumerable<T> struct.
public Array2DColumnEnumerable (T[,] array, int column);
new Microsoft.Toolkit.HighPerformance.Enumerables.Array2DColumnEnumerable<'T> : 'T[,] * int -> Microsoft.Toolkit.HighPerformance.Enumerables.Array2DColumnEnumerable<'T>
Public Sub New (array As T(,), column As Integer)
Parameters
- array
- T[,]
The source 2D T
array instance.
- column
- Int32
The target column to iterate within array
.