vote up 0 vote down star

I know how to test an object to see if it is of a type, using the IS keyword e.g.

if (foo is bar)
{
  //do something here
}

but how do you test for it not being "bar"?, I can't seem to find a keyword that works with IS to test for a negative result.

BTW - I have a horrible feeling this is soooo obvious, so apologies in advance...

flag

It's a good question. It's not obvious if you've tried but can't figure it out. That said, you may want to look at some C# syntax tutorials where they spell all this stuff out, and stuff that you haven't even asked yourself yet. – yar Jan 7 at 4:16

4 Answers

vote up 12 vote down check
if (!(foo is bar)) {
}
link|flag
vote up 1 vote down

You should clarify whether you want to test that an object is exactly a certain type or assignable from a certain type. For example:

public class Foo : Bar {}

And suppose you have:

Foo foo = new Foo();

If you want to know whether foo is not Bar(), then you would do this:

if(!(foo.GetType() == tyepof(Bar))) {...}

But if you want to make sure that foo does not derive from Bar, then an easy check is to use the as keyword.

Bar bar = foo as Bar;
if(bar == null) {/* foo is not a bar */}
link|flag
I love the foo as bar bit, because you will no doubt want to DO something with foo if it is a Bar, so you might as well code for that situation. – yar Jan 7 at 4:17
vote up 4 vote down

You can also use the as operator.

The as operator is used to perform conversions between compatible types.

bar aBar = foo as bar; // aBar is null if foo is not bar
link|flag
Is this 'cryptic and weird' or taking advantage of language features? – yar Jan 7 at 4:18
vote up 1 vote down

There is no specific keyword

if (!(foo is bar)) ...
if (foo.GetType() != bar.GetType()) .. // foo & bar should be on the same level of type hierarchy
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.