Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace ConsoleApplication1
  7. {
  8.  
  9. class ts
  10. {
  11. string user, client;
  12. public void write(string user, string client)
  13. {
  14. Console.WriteLine(user, client);
  15. Console.ReadLine();
  16.  
  17. }
  18. }
  19.  
  20.  
  21.  
  22. class Program
  23. {
  24.  
  25. static void Main(string[] args)
  26. {
  27. ts od = new ts();
  28. od.name = ("Rak");
  29. od.client = ("58488");
  30. od.write(od.name, od.client);
  31. }
  32. }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement