MA0044 - Remove useless ToString call string.ToString is a no-op call. You should remove the call to ToString(). var str = "abc"; Console.Write(str.ToString()); // non compliant var str = "abc"; Console.Write(str); // compliant