VS2010 Code Analysis, any way to automatically fix certain warnings?
Posted
by JL
on Stack Overflow
See other posts from Stack Overflow
or by JL
Published on 2010-05-01T08:21:41Z
Indexed on
2010/05/01
8:27 UTC
Read the original article
Hit count: 231
visual-studio-2010
|code-analysis
I must say I really like the new code analysis with VS 2010, I have a lot of areas in my code where I am not using CultureInfo.InvariantCulture
and code analysis is warming me about this.
I am pretty sure I want to use CultureInfo.InvariantCulture
where ever code analysis has detected it is missing on Convert.ToString operations.
Is there anyway to get VS to automatically fix warnings of this type?
© Stack Overflow or respective owner