Skip to content

Visual Studio 2015 Analyzer to find and fix ToString() calls on strings.

License

Notifications You must be signed in to change notification settings

t-johnson/StringToStringAnalyzer

Repository files navigation

StringToStringAnalyzer

Visual Studio 2015 Analyzer to find and fix ToString() calls on strings.

Finds and fixes instances like this:

Debug.WriteLine("abc".ToString());

gets fixed to:

Debug.WriteLine("abc");

where "abc" could be a literal, or a variable, or returned from a method

About

Visual Studio 2015 Analyzer to find and fix ToString() calls on strings.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published