摘要: [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  阅读全文
posted @ 2012-03-09 13:30 PointNet 阅读(1513) 评论(0) 推荐(0) 编辑