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

ReadUInt8() public static method

public static ReadUInt8 ( this buffer, int offset ) : byte
buffer this
offset int
return byte
        public static byte ReadUInt8(this byte[] buffer, int offset)
        {
            return buffer[offset];
        }