BattleNet.PlainTextDataType.Get C# (CSharp) Method

Get() public method

public Get ( int offset, String &output ) : System.Boolean
offset int
output String
return System.Boolean
        public Boolean Get(int offset, out String output)
        {
            if (offset < 0 || offset >= m_lines.Count)
            {
                output = "";
                return false;
            }
            String[] line = m_lines[offset];
            if (line.Length == 0)
                output = "";
            else
                output = line[0];
            return true;
        }
PlainTextDataType