RS warning "Cannot resolve symbol" for ArgumentException, not case sensitive?
[6.0]
class FooBar
{
void Bar(FooBar fooBar)
{
//RS warns for unresolved symbol "foo"
//throw new ArgumentNullException("foo");
//No RS warning
//throw new ArgumentNullException("FooBar");
//No RS warning
//throw new ArgumentNullException("foobar");
//Expected only below to result in no warning from RS
throw new ArgumentNullException("fooBar");
} }Is this a bug or is RS by design not treating param names case sensitive?
Thanks.
Please sign in to leave a comment.
Hello,
This looks like a bug. I've logged it under http://youtrack.jetbrains.net/issue/RSRP-282236
and you're welcome to monitor its status. Thank you!
Andrey Serebryansky
Senior Support Engineer
JetBrains, Inc
http://www.jetbrains.com
"Develop with pleasure!"