ArrayShape 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 ArrayShape structure.
public:
ArrayShape(int rank, System::Collections::Immutable::ImmutableArray<int> sizes, System::Collections::Immutable::ImmutableArray<int> lowerBounds);
public ArrayShape (int rank, System.Collections.Immutable.ImmutableArray<int> sizes, System.Collections.Immutable.ImmutableArray<int> lowerBounds);
new System.Reflection.Metadata.ArrayShape : int * System.Collections.Immutable.ImmutableArray<int> * System.Collections.Immutable.ImmutableArray<int> -> System.Reflection.Metadata.ArrayShape
Public Sub New (rank As Integer, sizes As ImmutableArray(Of Integer), lowerBounds As ImmutableArray(Of Integer))
Parameters
- rank
- Int32
The number of dimensions in the array.
- sizes
- ImmutableArray<Int32>
The size of each dimension.
- lowerBounds
- ImmutableArray<Int32>
The lower-bound of each dimension.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.