声纳问题 - 删除对本地变量的无用分配

时间:2018-05-08 06:53:17

标签: c# sonarqube sonarqube-scan

我正在使用下面提到的一段代码:

IList<Comment> listComments = new List<Comment>();
foreach (var comment in paxComments.Where(x => x.Id== paxID))
{
    listComments.Add(new Comment()
    {
        CommentID = comment.CommentId,
        Text = comment.Comment,
    });
}

这里声纳说&#34;删除这个无用的赋值给局部变量&#34;。如何在不使用新关键字初始化的情况下添加到列表中?

声纳注释&#34;删除对本地变量&#34; listComments&#34;的无用分配。 &#34;

我通过以下链接但没有得到答案。

Sonar complaining about useless assignment of local variable

remove this useless assignment to local variable c#

0 个答案:

没有答案