我正在Add 2 numbers
WCF 中创建一个基本服务。我在里面添加了以下内容IService.cs
[ServiceContract]
public interface ICalc{
[OperationContract]
int Add(int a, int b);
}
现在,在Service.cs
我添加的里面
public class Service: IService, ICalc {
public int Add(int a, int b){
return a+b;
}
}
现在我构建了这个服务并service reference to it
在控制台应用程序中添加了一个
Program.cs
它被称为
ICalService.Service c = new ICalService.Service();
int result = c.Add(10,20); //Now on this line I cannot seem to get the Add(int a, int b) method
我之前已经声明过。
ICalService
是我在引用我的服务时给它起的名字。
为什么Add(int a, int b)
方法不显示?