Exemplo n.º 1
0
        private string Text()
        {
            string text = "";

            while (!reader.Done())
            {
                text += reader.Read();
            }

            return(text);
        }