Skip to content

Instantly share code, notes, and snippets.

@mikehadlow
mikehadlow / SimpleConsoleLoop.cs
Created January 25, 2021 16:38
A simple framework for a console application periodic loop.
using System;
using System.Threading;
using System.Threading.Tasks;
using static System.Console;
namespace SimpleConsoleLoop
{
class Program
{
static Task Main()