Question

I am running StyleCop (which btw I completely recommend 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 is reporting an error

Warning 2   SA1003: The spacing around the symbol '=' is invalid.

If this is invalid, what is valid?

Was it helpful?

Solution

Come on y'all. ;) Matt had it in the comment.

[System.Xml.Serialization.XmlRootAttribute(Namespace = "", IsNullable = false)]

OTHER TIPS

Make life easy on yourself and just CTRL+K+D the file in VS.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top