How can I check if an object is of a certain type at runtime in C#?
|
|
|
You can use the is keyword. For example:
produces the output:
|
|||||||||||||
|
null-check included Edit: mistake correction |
||||
|
|
|
|||||||||
|
|
I can't add comments so I'll have to add this as an answer. Bear in mind that, from the documentation (http://msdn.microsoft.com/en-us/library/scekt9xw%28VS.80%29.aspx):
This not the same thing as checking the type with GetType. |
|||
|
|
|
Depending of your use case 'is' will not work as expected. Take a class Foo derived from class Bar. Create an object obj of type Foo. Both 'obj is Foo' and 'obj is Bar' will return true. However, if you use GetType() and compare against typeof(Foo) and typeof(Bar) the result will be different. The explanation is here and here is a piece of source code demonstrating this difference:
|
|||
|
|
|
The type information operators (as, is, typeof): http://msdn.microsoft.com/en-us/library/6a71f45d(VS.71).aspx The Object.GetType() method. Keep in mind that you may have to deal with inheritance hierarchies. If you have a check like obj.GetType() == typeof(MyClass), this may fail if obj is something derived from MyClass. |
|||
|
|
|
Use the typeof keyword:
|
|||||
|