1
爲什麼我不能在wcf
中做方法重載。背後的原因是什麼?我們無法在WCF中重載方法的原因或限制是什麼?
[ServiceContract]
interface ICalculator
{
[OperationContract]
int Add(int arg1,int arg2);
[OperationContract]
double Add(double arg1,double arg2);
}
由於事先