3 overrides of Lengths
System.Formats.Nrbf (3)
System\Formats\Nrbf\BinaryArrayRecord.cs (1)
45
public override ReadOnlySpan<int>
Lengths
=> new int[1] { Length };
System\Formats\Nrbf\RectangularArrayRecord.cs (1)
34
public override ReadOnlySpan<int>
Lengths
=> _lengths.AsSpan();
System\Formats\Nrbf\SZArrayRecord.cs (1)
27
public override ReadOnlySpan<int>
Lengths
=> new int[1] { Length };
2 references to Lengths
System.Private.Windows.Core (1)
System\Private\Windows\Core\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();