using System;
using System.ServiceProcess;
namespace GoShopService
{
public partial class Service1 : ServiceBase
{
protected override void OnStart(string[] args)
{
try
{
if (args.Length == 0)
{
}
if (args[0].ToLower() == "/i" || args[0].ToLower() == "-i")
{
}
}
catch (Exception ex)
{
}
}
protected override void OnStop()
{
}
}
}