AK.F1.Timing.Server.IO.ByteBufferSnapshot.ByteBufferSnapshot C# (CSharp) Метод

ByteBufferSnapshot() публичный Метод

Initialsies a new instance of the AK.F1.Timing.Server.IO.ByteBufferSnapshot class and specifies the buffer, offset and count.
/// Thrown when is . /// /// Thrown when /// /// /// is negative or greater than the length of /// /// /// is negative or greater than the length of /// given /// /// ///
public ByteBufferSnapshot ( byte buffer, int offset, int count ) : System
buffer byte The buffer.
offset int The buffer offset.
count int The buffer length.
Результат System
        public ByteBufferSnapshot(byte[] buffer, int offset, int count)
        {
            Guard.NotNull(buffer, "buffer");
            Guard.CheckBufferArgs(buffer, offset, count);

            _buffer = buffer;
            _offset = offset;
            _count = count;
        }