Area-IDEBugIDE-CodeStylehelp wanted
Repository metrics
- Stars
- (20,414 個のスター)
- PR merge metrics
- (平均マージ 6d 17h) (30d で 256 merged PRs)
説明
Version Used: Visual Studio 2019 version 16.0
Steps to Reproduce:
var x = 3;
x = x + 2;
Console.WriteLine(x);
Apply Inline temporary variable on the definition of x.
Expected Behavior:
var x = 3 + 2;
Console.WriteLine(x);
Actual Behavior:
var x = 3;
x = 3 + 2;
Console.WriteLine(3);