BitSharp.Common.Bits.EncodeUInt32 C# (CSharp) Метод

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

public static EncodeUInt32 ( uint value, byte buffer, int offset ) : void
value uint
buffer byte
offset int
Результат void
        public static void EncodeUInt32(uint value, byte[] buffer, int offset = 0)
        {
            EncodeInt32(unchecked((int)value), buffer, offset);
        }