调试应用程序无效操作异常时发生错误
namespace CompanyServiceHost
{
class Program
{
static void Main(string[] args)
{
using (ServiceHost host = new ServiceHost(typeof(CompanyService.CompanyService)))
{
host.Open();// error occurred in this line
Console.WriteLine("host started @" + DateTime.Now);
Console.ReadLine();
}
}
}
}
在这里,我需要尝试创建一个Web服务来使用它,我在控制台应用程序中托管