I have an old method that is rarely being used by a third part clients that i want to change it's signatures(mostly renaming).
How should I do that? what are the risks? Are there any real advantages?
A simple example:
Class Program
{
public void OldMethodName(var oldVarName)
{
//Do something
}
}
Change to
Class Program
{
public void NewMethodName(var newVarName)
{
//Do the same thing
}
}