Code
·
8 lines
·
112 bytes
1
2
3
4
5
6
7
8using System;
namespace Matroska.Models;
public interface IParseRawBinary
{
void Parse(Span<byte> span);
}