假设我在 WCF 服务中有一个现有方法:
[OperationContract]
CustomerInfo GetCustomerInfo(int customerId);
事实证明,我需要将其更改为它的参数而不是int。这会破坏现有客户吗?还是发生了一些隐式转换?
假设我在 WCF 服务中有一个现有方法:
[OperationContract]
CustomerInfo GetCustomerInfo(int customerId);
事实证明,我需要将其更改为它的参数而不是int。这会破坏现有客户吗?还是发生了一些隐式转换?