using System; using System.Collections.Generic; using System.Text; namespace Esiur.Data { public readonly struct ParseResult: IParseResult { public T Value { get; } public uint Size { get; } public ParseResult(T value, uint size) { Value = value; Size = size; } } }