如何在 WCF 中初始化类?
假设我只想对一个类中的两个成员求和。
我在 iService 中进行了编码,例如:
[DataContract]
class Sample
{
public int i { get; set; }
public int q { get; set; }
}
[OperationContract]
public int Sum(Sample obj);
在服务中:
public int Sum(Sample obj)
{
}
由于我对两个页面中的类声明感到困惑,因此需要添加什么代码才能使其运行?