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

EncodeUInt32BE() public static method

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