4 overrides of Lengths
System.Formats.Nrbf (4)
System\Formats\Nrbf\ArrayRectangularPrimitiveRecord.cs (1)
31
public override ReadOnlySpan<int>
Lengths
=> _lengths;
System\Formats\Nrbf\JaggedArrayRecord.cs (1)
41
public override ReadOnlySpan<int>
Lengths
=> _lengths;
System\Formats\Nrbf\RectangularArrayRecord.cs (1)
39
public override ReadOnlySpan<int>
Lengths
=> _lengths.AsSpan();
System\Formats\Nrbf\SZArrayRecord.cs (1)
27
public override ReadOnlySpan<int>
Lengths
=> new int[1] { Length };
3 references to Lengths
System.Formats.Nrbf (1)
System\Formats\Nrbf\ArrayRecord.cs (1)
68
/// Check the total length of the array by using <see cref="
Lengths
"/> property before calling this method,
System.Private.Windows.Core (1)
System\Private\Windows\BinaryFormat\Deserializer\ArrayRecordDeserializer.cs (1)
41
_lengths = arrayRecord.
Lengths
.ToArray();
System.Resources.Extensions (1)
System\Resources\Extensions\BinaryFormat\Deserializer\ArrayRecordDeserializer.cs (1)
44
_lengths = arrayRecord.
Lengths
.ToArray();