Advertisement
KodingKid

C# script that does absolutely nothing for an hour

Mar 25th, 2021
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.20 KB | None | 0 0
  1. using System;
  2. using System.Threading;
  3. class Program
  4. {
  5.   static void Main()
  6.   {    
  7.       var milliseconds = 3600000;
  8.     Thread.Sleep(milliseconds);
  9.       Console.WriteLine("Hello World!")
  10.   }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement