3

是否可以使用 Roslyn 检测无法访问的代码或其他内置编译警告?

private void DoSomething()
{
     string a = "TEST";

     throw new Exception("Why would I throw an exception here?");

     a = "This will never be reached"; //this is a compile time warning for unreachable code...Can I detect it?

}

我尝试检查语义和语法方法中的节点属性,但没有看到任何问题或警告集合。

4

1 回答 1

7

您可以使用语义模型的 AnalyzeRegionControlFlow 方法发现这一点。您可以在与您感兴趣的语句相对应的文本范围内调用此传递。AnalyzeRegionControlFlow 将返回一个具有属性 RegionEndPointIsReachable 的数据结构,它还将告诉您所有跳入或跳出该区域的语句。

如果您想知道如何找到编译器将报告的实际诊断信息,您需要在语义模型上使用 GetDiagnostics 方法。

于 2012-04-19T18:17:30.143 回答