RaceLapTimer/RaceLapTimer/RaceLapTimerHost/Program.cs

17 lines
348 B
C#

using System;
namespace RaceLapTimerHost
{
class Program
{
static void Main(string[] args)
{
var service = new RaceLapTimer.RaceLapTimer();
service.Start();
Console.WriteLine("Press enter to exit");
Console.ReadLine();
service.StopService();
}
}
}