System.Private.Windows.BinaryFormat.Serializer.ArrayInfo
Array information structure.
namespace System.Private.Windows.BinaryFormat.Serializer
{
internal readonly struct ArrayInfo : IBinaryWriteable
{
public Id ObjectId { get; }
public Count Length { get; }
public ArrayInfo(Id objectId, Count length);
public void Write(BinaryWriter writer);
}
}