ArrayShapeEncoder.Shape 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
배열 셰이프를 인코딩합니다.
public:
void Shape(int rank, System::Collections::Immutable::ImmutableArray<int> sizes, System::Collections::Immutable::ImmutableArray<int> lowerBounds);
public void Shape (int rank, System.Collections.Immutable.ImmutableArray<int> sizes, System.Collections.Immutable.ImmutableArray<int> lowerBounds);
member this.Shape : int * System.Collections.Immutable.ImmutableArray<int> * System.Collections.Immutable.ImmutableArray<int> -> unit
Public Sub Shape (rank As Integer, sizes As ImmutableArray(Of Integer), lowerBounds As ImmutableArray(Of Integer))
매개 변수
- rank
- Int32
배열의 차원 수(1개 이상이어야 함).
- sizes
- ImmutableArray<Int32>
차원 크기입니다. 배열은 rank
보다 짧을 수 있지만 더 길면 안 됩니다.
- lowerBounds
- ImmutableArray<Int32>
차원 하한을 설정하거나 기본값(ImmutableArray<T>)을 지정하여 모든 rank
하위 범위를 0으로 설정합니다.
배열은 rank
보다 짧을 수 있지만 더 길면 안 됩니다.
예외
rank
가 범위 [1, 0xffff]를 벗어나거나 sizes.Length
또는 lowerBounds.Length
보다 작은 경우
sizes
이(가) null
인 경우
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET