摘要:
1.先创建一个WCF服务库2.创建一个Console控制台,服务将寄宿在该应用程序上,该程序一旦关闭,服务将停止。控制台代码: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using WcfServiceLibrary; 6 using System.ServiceModel; 7 using System.ServiceModel.Description; 8 9 namespace wcfConsole10 {11 class Pro... 阅读全文