Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This works just fine:

    protected void txtTest_Load(object sender, EventArgs e)
    {
        if (sender is TextBox) {...}

    }

is there a way to check if sender is NOT a TextBox, some kind of an equivalent of != for "is"?

Please, don't suggest moving the logic to ELSE{} :)

thank you.

I knew it had to be easy :)

share|improve this question

3 Answers

up vote 62 down vote accepted

This is one way:

if (!(sender is TextBox)) {...}
share|improve this answer
3  
this answer is not worth 82 reputation. – moo Feb 9 '09 at 21:14
3  
@orlandu63: then you should not have up-voted it. – Shog9 Feb 9 '09 at 21:16
For this particular situation I prefer if (sender is TextBox == false). Less clunky syntax like this. – hmemcpy Feb 9 '09 at 21:16
3  
@hmemcpy: Personally, i cringe whenever i see a comparison to a boolean constant. Probably my C background showing through... Still, makes my skin crawl, and there's no way i'd leave it alone in code i was editing. – Shog9 Feb 9 '09 at 21:17

DISCLAIMER: My C# skills are a little rusty.

Couldn't you also do the more verbose "old" way, before the is keyword:

if (sender.GetType() != typeof(TextBox)) { // ... }
share|improve this answer
6  
Sure, you could, but do note that the "is" keyword matches any object derived from TextBox, whereas this typeof() check only matches TextBoxes. – mquander Feb 9 '09 at 21:12
Ah, I did not know that. Learn something new every day :) – WayneM Feb 9 '09 at 21:27

Jon T posted the correct answer. You should see the (sender is Textbox) as a bool, which probably makes it easier to understand.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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