Can I change a WCF method parameter from int data type to long?

297 Views Asked by At

Let's say I have an existing method in a WCF service:

[OperationContract]
CustomerInfo GetCustomerInfo(int customerId);

It turns out I need to change this to take a long as its parameter instead of an int. Would that break existing clients? Or is there some implicit conversion that happens?

0

There are 0 best solutions below