| ExtensionsSliceColumnT Method |
Returns the elements of the first dimension of a multidimensional array
Namespace:
Cauldron
Assembly:
Cauldron (in Cauldron.dll) Version: 3.2.0.2
Syntax public static IEnumerable<T> SliceColumn<T>(
this T[,] array,
int column
)
Parameters
- array
- Type: T
The array to get the dimension from - column
- Type: SystemInt32
The second dimension of the array
Type Parameters
- T
- The type that is contained in the array
Return Value
Type:
IEnumerableTThe second dimension of the array depending on the
columnUsage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type . When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also