Exemplo n.º 1
0
 private void parse(System.IO.StreamReader input)
 {
     try
     {
         string line;
         while ((line = input.ReadLine()) != null)
         {
             parseLine(line);
         }
     }
     catch (System.IO.IOException ex)
     {
         SyscallException se = new SyscallException(ex);
         throw se;
     }
 }
Exemplo n.º 2
0
 private void parse(System.IO.StreamReader input)
 {
     try
     {
         string line;
         while((line = input.ReadLine()) != null)
         {
             parseLine(line);
         }
     }
     catch(System.IO.IOException ex)
     {
         SyscallException se = new SyscallException(ex);
         throw se;
     }
 }