BACnet.Core.BufferExtensions.ReadUInt8 C# (CSharp) Метод

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

public static ReadUInt8 ( this buffer, int offset ) : byte
buffer this
offset int
Результат byte
        public static byte ReadUInt8(this byte[] buffer, int offset)
        {
            return buffer[offset];
        }