AsmResolver.OutputStreamExtensions.GetCompressedSize C# (CSharp) Метод

GetCompressedSize() публичный статический Метод

Determines the size (in bytes) of an integer when it is compressed.
public static GetCompressedSize ( this value ) : uint
value this The value to get the size from.
Результат uint
        public static uint GetCompressedSize(this uint value)
        {
            if (value < 0x80)
                return 1;
            if (value < 0x4000)
                return 2;
            return 4;
        }