A question about naming local variables in a C# method that takes a parameter of the same name Please see the code below
private int DoSomething(string activationCode)
{
...
int ??WhatNameToChooseHere?? = Convert.ToInt32(activationCode);
...
}
What could be a good strategy to apply in the above scenario
Note: method paramter and local variable only differ by type only