9 references to Rank
Microsoft.CodeAnalysis (9)
CodeGen\ArrayMembers.cs (2)
199
int rank = (int)arrayType.
Rank
;
307
int rank = (int)arrayType.
Rank
;
CodeGen\ILBuilderEmit.cs (4)
370
this.EmitOpCode(ILOpCode.Newobj, 1 - (int)arrayType.
Rank
);
384
this.EmitOpCode(ILOpCode.Call, -(int)arrayType.
Rank
);
398
this.EmitOpCode(ILOpCode.Call, -(int)arrayType.
Rank
);
412
this.EmitOpCode(ILOpCode.Call, -(2 + (int)arrayType.
Rank
));
PEWriter\MetadataWriter.cs (1)
3886
arrayShape.Shape(arrayTypeReference.
Rank
, arrayTypeReference.Sizes, arrayTypeReference.LowerBounds);
PEWriter\TypeNameSerializer.cs (2)
42
if (arrType.
Rank
== 1)
47
sb.Append(',', (int)arrType.
Rank
- 1);