BACnet.Core.BufferExtensions.WriteUInt8 C# (CSharp) Method

WriteUInt8() public static method

public static WriteUInt8 ( this buffer, int offset, byte value ) : void
buffer this
offset int
value byte
return void
        public static void WriteUInt8(this byte[] buffer, int offset, byte value)
        {
            buffer[offset] = value;
        }