BACnet.Core.BufferSegment.BufferSegment C# (CSharp) Method

BufferSegment() public method

Constructs a new buffer segment instance
public BufferSegment ( byte buffer, int offset, int end ) : System
buffer byte The buffer
offset int The offset of the segment within the buffer
end int
return System
        public BufferSegment(byte[] buffer, int offset, int end)
            : this()
        {
            this.Buffer = buffer;
            this.Offset = offset;
            this.End = end;
        }
BufferSegment