コード例 #1
0
ファイル: PropertiesI.cs プロジェクト: chuanqingli/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;
     }
 }
コード例 #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;
     }
 }