我正在使用下面提到的一段代码:
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