It appears that the issue was also relevant to windows, but windows somehow compensated? #103
18 lines
375 B
C#
18 lines
375 B
C#
using System;
|
|
using CardReaderService;
|
|
|
|
namespace CardReaderServiceHost
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
Service1 service1 = new Service1();
|
|
service1.Start();
|
|
Console.WriteLine("Service Running... Enter To Stop");
|
|
Console.ReadLine();
|
|
service1.Stop();
|
|
}
|
|
}
|
|
}
|