Let's say that we have the following method signature in our public API:
public void TestMethod(int x)
Some users of the API is calling our method using named parameters:
TestMethod(x: 2);
If we change the parameter name in our method (e.g. the x parameter is renamed to y) then it will break all usages where named parameters have been used.
Let's say that we have the following method signature in our public API:
public void TestMethod(int x)Some users of the API is calling our method using named parameters:
TestMethod(x: 2);If we change the parameter name in our method (e.g. the x parameter is renamed to y) then it will break all usages where named parameters have been used.