摘要:
[ServiceContract]public interface IService{[OperationContract]void Test(string s);}public class Service : IService {public void Test(string s){Console.WriteLine(s.Length);}}public class WcfTest{public static void Test(){AppDomain.CreateDomain("Server").DoCallBack(delegate{ServiceHost host 阅读全文