Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
325 views

Should I suppress CA1062: Validate arguments of public methods?

I've recently upgraded my project to Visual Studio 2010 from Visual Studio 2008. In Visual Studio 2008, this Code Analysis rule doesn't exist. Now I'm not sure if I should use this rule or not. I'm ...
2
votes
1answer
62 views

CA1062 (Code Analysis) disagrees with ReSharper — Who wins?

protected override void OnTextInput(TextCompositionEventArgs e) { e.Handled = true; DoSomething(e.Text); } If I check for null, CA is happy, but ReSharper says that the null check will ...
2
votes
2answers
582 views

Why do I get Code Analysis CA1062 on an out parameter in this code?

I have a very simple code (simplified from the original code - so I know it's not a very clever code) that when I compile in Visual Studio 2010 with Code Analysis gives me warning CA1062: Validate ...
2
votes
3answers
457 views

CA1062: ValidateArgumentsOfPublicMethods on co-constructor calls

I have a class with two constructors that look like this: public MyClass(SomeOtherClass source) : this(source, source.Name) { } public MyClass(SomeOtherClass source, string name) { /* ... */ } When ...
1
vote
1answer
460 views

Can't suppress FxCop Warning CA1062

c#/.net/fxcop! ... within a class, I want FxCop to shut up complaining about Warning CA1062 : Microsoft.Design : In externally visible method 'xyz', validate parameter 'a' before using it. ...