Files
2026-08-27 10:56:38 -06:00

22 lines
319 B
C#

using System;
using System.Runtime.InteropServices;
namespace ProtoBuf;
[StructLayout(LayoutKind.Sequential, Size = 1)]
public struct MeasureState<T> : IDisposable
{
public long Length
{
get
{
throw new NotImplementedException();
}
}
public void Dispose()
{
throw new NotImplementedException();
}
}