예제 #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;
     }
 }
예제 #2
0
파일: PropertiesI.cs 프로젝트: externl/ice
 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;
     }
 }