BF2Statistics.Net.BufferDataToken.BufferDataToken C# (CSharp) Method

BufferDataToken() public method

Creates a new instance of BufferDataToken
public BufferDataToken ( int BufferOffset, int BlockSize ) : System
BufferOffset int The offest in the Buffer block allocated to this object
BlockSize int The total size in the buffer allocated to this object
return System
        public BufferDataToken(int BufferOffset, int BlockSize)
        {
            this.BufferBlockSize = BlockSize;
            this.BufferOffset = BufferOffset;
        }
BufferDataToken