Closed sharwell closed 10 years ago
When the language version is set to C# 5 or earlier, the refactoring operation for the parameter of the following method is incorrect.
public void Operation(object @object) { }
public void Operation(object @object) { if (@object == null) { throw new ArgumentNullException("object"); } }
public void Operation(object @object) { if (@object == null) { throw new ArgumentNullException("@object"); } }
When the language version is set to C# 5 or earlier, the refactoring operation for the parameter of the following method is incorrect.
Expected
Actual