Advertisement
Dgame321

Untitled

Nov 14th, 2019
6,597
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.73 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Drawing;
  4. using System.IO;
  5. using System.Linq;
  6. using System.Text;
  7. using Newtonsoft.Json.Linq;
  8. using System.Net;
  9. using System.Net.NetworkInformation;
  10. using System.Threading.Tasks;
  11.  
  12. using Colorful;
  13.  
  14. namespace ConsoleApp3
  15. {
  16. class Program
  17. {
  18.  
  19. static void Main(string[] args)
  20. {
  21. Colorful.Console.WriteLine(" ▓█████▄ ▄████ ▓█████ ███▄ █ ");
  22. Colorful.Console.WriteLine(" ▒██▀ ██▌ ██▒ ▀█▒▓█ ▀ ██ ▀█ █ ");
  23. Colorful.Console.WriteLine(" ░██ █▌▒██░▄▄▄░▒███ ▓██ ▀█ ██▒");
  24. Colorful.Console.WriteLine(" ░▓█▄ ▌░▓█ ██▓▒▓█ ▄ ▓██▒ ▐▌██▒");
  25. Colorful.Console.WriteLine(" ░▒████▓ ░▒▓███▀▒░▒████▒▒██░ ▓██░");
  26. Colorful.Console.WriteLine(" ▒▒▓ ▒ ░▒ ▒ ░░ ▒░ ░░ ▒░ ▒ ▒ ");
  27. Colorful.Console.WriteLine(" ░ ▒ ▒ ░ ░ ░ ░ ░░ ░░ ░ ▒░");
  28. Colorful.Console.WriteLine(" ░ ░ ░ ░ ░ ░ ░ ░ ░ ░ ");
  29. Colorful.Console.WriteLine(" ░ ░ ░ ░ ░ ");
  30. Colorful.Console.WriteLine(" ░ ");
  31. Colorful.Console.WriteLine(" ");
  32. Colorful.Console.WriteLine(" [1] Proxy checker", Color.White);
  33. Colorful.Console.WriteLine(" [2] Exit", Color.White);
  34. ConsoleKeyInfo consoleKeyInfo = System.Console.ReadKey();
  35. for (; ; )
  36. {
  37. bool flag = consoleKeyInfo.Key == ConsoleKey.D1;
  38. if (flag)
  39. {
  40. Colorful.Console.Clear();
  41.  
  42. test();
  43. }
  44. bool flag1 = consoleKeyInfo.Key == ConsoleKey.D2;
  45. if (flag1)
  46. {
  47. Environment.Exit(1);
  48. }
  49. }
  50.  
  51.  
  52. }
  53.  
  54. static void test()
  55. {
  56.  
  57. }
  58. }
  59. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement