Guest User

Untitled

a guest
May 21st, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. while (true)
  2. {
  3. Console.WriteLine("Skok chisel");
  4. int kol = Console.Read();
  5.  
  6. for (int i = 0; i < kol; i++)
  7. {
  8. Console.WriteLine("enter {0} element", i);
  9. string message = Console.ReadLine();
  10.  
  11. byte[] buffer = Encoding.ASCII.GetBytes(message);
  12.  
  13. socket.Send(buffer);
  14. Console.WriteLine("отправилось!");
  15. }
  16.  
  17.  
  18. }
Add Comment
Please, Sign In to add comment