Exemplo n.º 1
0
 /// <summary>
 /// Create an input stream from a filename.
 /// </summary>
 public In(string path)
 {
     scanner = new Scanner(path);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Create an input stream from a filename.
 /// </summary>
 public In(string path)
 {
     scanner = new Scanner(path);
 }
Exemplo n.º 3
0
 /// <summary>
 /// Create an input stream from standard input.
 /// </summary>
 public In()
 {
     scanner = new Scanner(Console.OpenStandardInput());
 }
Exemplo n.º 4
0
 /// <summary>
 /// Create an input stream from standard input.
 /// </summary>
 public In()
 {
     scanner = new Scanner(Console.OpenStandardInput());
 }