Пример #1
0
 private static void StopService(IWeatherService srv, IContainer container)
 {
     try
     {
         srv.Stop();
         container.Dispose();
     }
     catch (Exception err)
     {
         EventLog.WriteEntry(Weatherservice, err.ToString(), EventLogEntryType.Error);
     }
 }