Advertisement
Guest User

Untitled

a guest
May 24th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. private void File()
  2. {
  3. string path = @"BD.txt";
  4. // Console.WriteLine("******считываем построчно********");
  5. using (StreamReader sr = new StreamReader(path, Encoding.Default))
  6. {
  7. string line,log,pass;
  8. while ((line = sr.ReadLine()) != null)
  9. {
  10. log=line.Split(':')[0];
  11. pass = line.Split(':')[1].Split(' ')[0];
  12. Console.WriteLine(line);
  13. }
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement