This is a diagnostic extension for the .NET Compiler Platform ("Roslyn") for detecting and fixing instances of ToString() being called on string members.
Example fixes provided:
string abc = "abc"; Debug.WriteLine(abc.ToString()); == > Debug.WriteLine(abc); Debug.WriteLine(abc.Trim().ToString()); == > Debug.WriteLine(abc.Trim()); |