Microsoft.Cci.InternFactory.MatrixTypeStore.MatrixTypeStore C# (CSharp) Method

MatrixTypeStore() private method

private MatrixTypeStore ( int rank, int lowerBounds, ulong sizes, uint internedId ) : System
rank int
lowerBounds int
sizes ulong
internedId uint
return System
      internal MatrixTypeStore(
        int rank,
        int[] lowerBounds,
        ulong[] sizes,
        uint internedId
      ) {
        this.Rank = rank;
        this.LowerBounds = lowerBounds;
        this.Sizes = sizes;
        this.InternedId = internedId;
      }
    }
InternFactory.MatrixTypeStore