8000 StringToStringAnalyzer/README.md at master · t-johnson/StringToStringAnalyzer · GitHub
[go: up one dir, main page]

Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 299 Bytes

File metadata and controls

12 lines (7 loc) · 299 Bytes

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

0