vote up 10 vote down star
2

This is a silly question, but you can use this code to check if something is a particular type...

if (child is IContainer) { //....

Is there a more elegant way to check for the "NOT" instance?

if (!(child is IContainer)) { //A little ugly... silly, yes I know...

//these don't work :)
if (child !is IContainer) {
if (child isnt IContainer) { 
if (child aint IContainer) { 
if (child isnotafreaking IContainer) {

Yes, yes... silly question....

Because there is some question on what the code looks like, it's just a simple return at the start of a method.

public void Update(DocumentPart part) {
    part.Update();
    if (!(DocumentPart is IContainer)) { return; }
    foreach(DocumentPart child in ((IContainer)part).Children) {
       //...etc...
flag

50% accept rate
10  
I personally like the "child isnotafreaking ...". I'm voting to have that keyword put into C# 5 – Joseph May 1 at 14:39
I'm interested to know the situation you'd use this? What does the "else" part of this code look like and can't you just invert the test? If your code is saying "if child isn't an IContainer then throw exceptions" or "if child isn't an IContainer then maybe it's an IFoo so I'll try that next" then isn't there an implied else statement there? I'm probably missing something. – Martin Peck May 1 at 14:52

8 Answers

vote up 39 vote down check
if(!(child is IContainer))

is the only operator to go (there's no IsNot operator).

You can build an extension method that does it:

public static bool IsA<T>(this object obj) {
    return obj is T;
}

and then use it to:

if (!child.IsA<IContainer>())

And you could follow on your theme:

public static bool IsNotAFreaking<T>(this object obj) {
    return !(obj is T);
}

if (child.IsNotAFreaking<IContainer>()) { // ...


Update (considering the OP's code snippet):

Since you're actually casting the value afterward, you could just use as instead:

public void Update(DocumentPart part) {
    part.Update();
    IContainer containerPart = part as IContainer;
    if(containerPart == null) return;
    foreach(DocumentPart child in containerPart.Children) { // omit the cast.
       //...etc...
link|flag
Very nice extension method (IsNotAFreaking – HBoss May 1 at 14:43
Not the only way, see mine below... – ck May 1 at 14:55
ck: I meant in the sense of operators, there's no IsNot thing. – Mehrdad Afshari May 1 at 14:56
+1 for IsNotAFreaking – Joseph May 1 at 15:14
nice answer!.... – Vimvq1987 May 1 at 17:17
vote up 15 vote down

You can do it this way:

object a = new StreamWriter("c:\\temp\\test.txt");

if (a is TextReader == false)
{
   Console.WriteLine("failed");
}
link|flag
I like it. Simple and readable. – Dominic May 1 at 14:49
This really works? – Frank May 1 at 15:11
@Frank - yep, the is keyword gives a boolean, which you can compare to false – ck May 1 at 15:13
@Frank it works because is has higher precedence relative to ==. The only reason you can't use !x is f is that it has less precedence than !. – Mehrdad Afshari May 1 at 15:23
@Mehrdad - nice explanation – ck May 1 at 15:25
vote up 7 vote down

Why not just use the else ?

if (child is IContainer)
{
  //
}
else
{
  // Do what you want here
}

Its neat it familiar and simple ?

link|flag
Nothing wrong with it - this is just a nitpick question. I wanted to immediately exit a function if something was not a particular type. I've done it (!(child is Something)) forever now, but I thought I'd make sure there wasn't a better way. – HBoss May 1 at 14:43
vote up 3 vote down

Ugly? I disagree. The only other way (I personally think this is "uglier"):

var obj = child as IContainer;
if(obj == null)
{
   //child "aint" IContainer
}
link|flag
4  
This won't work if the target type is a value type. – Mehrdad Afshari May 1 at 14:39
Hmm.. Good point, I didn't think of that. – BFree May 1 at 14:41
@Mehrdad - Nullable ? would enable it to work, not that this should be used. It's just an example of an uglier way. – Stevo3000 May 1 at 14:42
@Steveo3000: Yes, but you should explicitly mention ? is the as clause. obj as int is a always a compile time error. – Mehrdad Afshari May 1 at 14:45
@Mehrdad - Agreed, BFree could edit his post to reflect this. Giving us 'obj as int?'. – Stevo3000 May 1 at 14:47
show 3 more comments
vote up 2 vote down

While the IS operator is normally the best way, there is an alternative that you can use in some cirumstances. You can use the as operator and test for null.

MyClass mc = foo as MyClass;
if ( mc == null ) { }
else {}
link|flag
vote up 2 vote down

The is operator evaluates to a boolean result, so you can do anything you would otherwise be able to do on a bool. To negate it use the ! operator. Why would you want to have a different operator just for this?

link|flag
It's not a different operator. I was wondering if there was a keyword that would let me drop the extra set of parens. It's a major nit-pick, but I was curious. – HBoss May 1 at 14:44
Okay I understand. From your examples I got the impression that you were looking for a new, dedicated operator. – Brian Rasmussen May 1 at 15:28
vote up 2 vote down

The extension method IsNot<T> is a nice way to extend the syntax. Keep in mind

var container = child as IContainer;
if(container != null)
{
  // do something w/ contianer
}

performs better than doing something like

if(child is IContainer)
{
  var container = child as IContainer;
  // do something w/ container
}

In your case, it doesn't matter as you are returning from the method. In other words, be careful to not do both the check for type and then the type conversion immediately after.

link|flag
vote up 1 vote down

The way you have it is fine but you could create a set of extension methods to make "a more elegant way to check for the 'NOT' instance."

public static bool Is<T>(this object myObject)
{
    return (myObject is T);
}

public static bool IsNot<T>(this object myObject)
{
    return !(myObject is T);
}

Then you could write:

if (child.IsNot<IContainer>())
{
    // child is not an IContainer
}

Enjoy, Robert C. Cartaino

link|flag
Missing a ! operator – sixlettervariables May 1 at 14:46

Your Answer

Get an OpenID
or

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