dotnet/roslyn
IDE0059 - Unneccessary assignment is not reported if lambda is used in method
开放
#38,376 创建于 2019年8月29日
Area-IDEConcept-Continuous ImprovementFeature - IDE0059IDE-CodeStylehelp wanted
仓库指标
- 星标
- (20,414 个星标)
- PR 合并指标
- (平均合并 6天 17小时) (30 天内合并 256 个 PR)
描述
Version Used: VS16.3 Preview 2
Steps to Reproduce:
using System;
namespace TestNamespace
{
public class TestClass
{
public void TestMethod()
{
var r = new Random();
DoSmth(() => true);
}
private void DoSmth(Func<bool> func) => func();
}
}
Expected Behavior:
IDE0059 should be triggered for r.
Actual Behavior:
IDE0059 is not triggered.
If you comment out DoSmth(() => true);, IDE0059 is triggered as expected.