Last active
January 3, 2016 13:09
-
-
Save amitapl/8467381 to your computer and use it in GitHub Desktop.
DotNetContinuousJobSample
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Threading; | |
namespace ContinuousHelloWorld | |
{ | |
internal class Program | |
{ | |
private static void Main(string[] args) | |
{ | |
while (true) | |
{ | |
Console.WriteLine("Hello World!!! " + DateTime.UtcNow); | |
Thread.Sleep(1000); | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment