Exemplo n.º 1
0
 public int Read()
 {
     if (sr == null)
     {
         throw Ops.EofError("");
     }
     FixStreams();
     return(sr.Read());
 }
Exemplo n.º 2
0
 public string read(int i)
 {
     ThrowIfClosed();
     return((i < 0) ? _sr.ReadToEnd() : _sr.Read(i));
 }
Exemplo n.º 3
0
 public string read(int s)
 {
     ThrowIfClosed();
     return((s < 0) ? _sr.ReadToEnd() : _sr.Read(s));
 }