One of the things that I find hard to keep consistent is the use of int vs Int32 and bool vs Boolean etcetera.
I find it simpler to identify all types by their case and color syntax highlighting…
List<int>
vs
List<Int32>
The latter is cleaner and upholds consistency. A lot of code is littered with both and I’m looking for a refactoring tool to change them all.
Are there any tools that allow me to change all C# built-in types to their .NET Framework types?
I eventually wrote a macro to do this