Program.cs 514 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Diagnostics;
  3. using System.Threading;
  4. namespace Chino.Apps.Shell
  5. {
  6. class Program
  7. {
  8. static void Main(string[] args)
  9. {
  10. Console.ForegroundColor = ConsoleColor.Green;
  11. Console.WriteLine("Hello Shell!");
  12. Console.ForegroundColor = ConsoleColor.White;
  13. int i = 0;
  14. while (true)
  15. {
  16. Thread.Sleep(1000);
  17. Console.WriteLine("Tick" + i++);
  18. }
  19. }
  20. }
  21. }