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
;
49
Array array =
_lengths
.Length switch
51
1 => new ArrayRecord[
_lengths
[0]],
52
2 => new ArrayRecord[
_lengths
[0],
_lengths
[1]],
53
_ => Array.CreateInstance(typeof(ArrayRecord),
_lengths
)
56
Populate(_records, array,
_lengths
, AllowedRecordTypes.Arrays, allowNulls);