using System.ServiceProcess; namespace DnsService { static class Program { /// /// The main entry point for the application. /// static void Main() { ServiceBase[] ServicesToRun; ServicesToRun = new ServiceBase[] { new DnsService() }; ServiceBase.Run(ServicesToRun); } } }