Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.43 KB | None | 0 0
  1.  private void ParseNoConcurrency()
  2.         {
  3.             foreach (TextReader reader in this.readers)
  4.             {
  5.                 string line;
  6.                 while ((line = reader.ReadLine()) != null)
  7.                 {
  8.                     foreach (IParser parser in this.parsers)
  9.                     {
  10.                         parser.Parse(line, this.proxy);
  11.                     }
  12.                 }
  13.             }
  14.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement