Guest User

Untitled

a guest
Oct 22nd, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. while (true)
  2. {
  3. string temp = fs.ReadLine();
  4. Char delimiter = ',';
  5. String[] substrings = temp.Split(delimiter);
  6. foreach (var substring in substrings)
  7. Console.WriteLine(String.Join(",",substring,48));
  8. if (temp == null) break;
  9. {
  10. Console.WriteLine("end");
  11. Console.ReadLine();
  12. }
  13.  
  14. }
  15. }
  16. enter code here
Add Comment
Please, Sign In to add comment