i have a short question to a wcf Service
I want to implement 2 Methods with the same name. But with a different amount of Parameter.
Example
[ServiceContract]
public interface ILiveLeadsService
{
[OperationContract]
string AddLiveLeads(string a, string b);
[OperationContract]
string AddLiveLeads(string a, string b, string c);
}
What can i do that i can use this 2 Methods with the same name?
cheers Andre