10 references to BinaryArrayType
System.Formats.Nrbf (10)
System\Formats\Nrbf\ArrayInfo.cs (3)
25
internal ArrayInfo(SerializationRecordId id, long totalElementsCount,
BinaryArrayType
arrayType =
BinaryArrayType
.Single, int rank = 1)
37
internal
BinaryArrayType
ArrayType { get; }
System\Formats\Nrbf\ArrayRecord.cs (2)
46
internal
BinaryArrayType
ArrayType => ArrayInfo.ArrayType;
56
=> ArrayInfo.ArrayType ==
BinaryArrayType
.Jagged
System\Formats\Nrbf\BinaryArrayRecord.cs (2)
146
BinaryArrayType
arrayType = reader.ReadArrayType();
149
bool isRectangular = arrayType is
BinaryArrayType
.Rectangular;
System\Formats\Nrbf\Utils\BinaryReaderExtensions.cs (3)
32
internal static
BinaryArrayType
ReadArrayType(this BinaryReader reader)
41
if (arrayType > (byte)
BinaryArrayType
.Rectangular)
52
return (
BinaryArrayType
)arrayType;