SonarLint 4.19.0.15817 doesn’t seem to recognize when a parameter is added to a value tuple, e.g.:
using System;
namespace SonarLintTest
{
static class Program
{
static void Main()
{
Test("abc");
}
private static void Test(string value)
{
var x = (value, 7);
Console.WriteLine(x.value);
}
}
}
reports an S1172 error suggesting the parameter value is ignored