BattleNet.BinaryDataType.Get C# (CSharp) Method

Get() public method

public Get ( int offset, int length, byte &output ) : System.Boolean
offset int
length int
output byte
return System.Boolean
        public Boolean Get(int offset, int length, out byte[] output)
        {
            if(offset < 0 || offset+length > m_data.Count)
            {
                output = null;
                return false;
            }
            output = m_data.GetRange(offset, length).ToArray();
            return true;
        }
BinaryDataType