BitSharp.Common.Bits.EncodeUInt32 C# (CSharp) Method

EncodeUInt32() public static method

public static EncodeUInt32 ( uint value, byte buffer, int offset ) : void
value uint
buffer byte
offset int
return void
        public static void EncodeUInt32(uint value, byte[] buffer, int offset = 0)
        {
            EncodeInt32(unchecked((int)value), buffer, offset);
        }