If I implement an abstract class that contains this method:
private void MyMethod(string awesomeParameter, int aBigNumber)
{
// something cool happens here!
throw new NotImplementedException();
}
can I change it to this without breaking the implementation?
private void MyMethod(string myParam, int myInt)
{
// something cool happens here!
throw new NotImplementedException();
}
I can't seem to find an answer to this, and I've never run into this issue before, but I'm implementing a new MembershipProvider and the default implementation uses some logical parameter names, but they don't match our sql table schema. For example, the implementation uses "username" but our table's column is "UserID." It would be easier to read through the code if the names matched the schema we are using.