Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace MyUtilityNamespace
  8. {
  9. class MyUtility
  10. {
  11. public static void MyDeath(string myStr = null)
  12. {
  13. Console.WriteLine(myStr);
  14. Console.ReadKey();
  15. }
  16. public static int MyRead(string myStr = null)
  17. {
  18. Console.Write(myStr);
  19. return Convert.ToInt32(Console.ReadLine());
  20. }
  21.  
  22. public static Random myFate = new Random();
  23. }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement