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?