Code
·
9 lines
·
288 bytes
1
2
3
4
5
6
7
8
9namespace Matroska.Extensions;
public static class VIntExtensions
{
public static string Info(this (ulong Value, int Length, ulong EncodedValue) variableInt)
{
return $"VInt, value = {variableInt.Value}, length = {variableInt.Length}, encoded = {variableInt.EncodedValue:X}";
}
}