I am launching StyleCop (which, by the way, is completely recommended if you want to deliver high-quality code) ...
I have this line
[System.Xml.Serialization.XmlRootAttribute(Namespace = "", IsNullable=false)]
update tried this too
[System.Xml.Serialization.XmlRootAttribute(Namespace="", IsNullable=false)]
StyleCop reports an error
Warning 2 SA1003: The spacing around the symbol '=' is invalid.
If this is unacceptable, what is valid?
source
share