1 write to _lengths
System.Formats.Nrbf (1)
System\Formats\Nrbf\JaggedArrayRecord.cs (1)
32
_lengths
= lengths;
7 references to _lengths
System.Formats.Nrbf (7)
System\Formats\Nrbf\JaggedArrayRecord.cs (7)
41
public override ReadOnlySpan<int> Lengths =>
_lengths
;
51
Array array =
_lengths
.Length switch
53
1 => new ArrayRecord[
_lengths
[0]],
54
2 => new ArrayRecord[
_lengths
[0],
_lengths
[1]],
55
_ => Array.CreateInstance(typeof(ArrayRecord),
_lengths
)
58
Populate(_records, array,
_lengths
, AllowedRecordTypes.Arrays, allowNulls);