I am currently following the recommendations of the Microsoft Naming Guidelines, so using camelCase in function parameter names. Now suppose I would like to use a signature
public string WriteNumberInBase (int number, int base)
in some method, and the compiler complains about the parameter name only because "base" is a reserved keyword ... Is there a way to get a "base" to accept as a parameter name?
source
share