What's the simplest way of testing if an object implements a given interface?
Is it possible to test if a class implements a given interface?
|
1
|
What's the simplest way of testing if an object implements a given interface? Is it possible to test if a class implements a given interface?
|
||
|
|
|
|
or
|
||
|
|
|
Using the
I think this is much neater than looking through the array returned by |
|||
|
|
|
|
For the instance:
For the class: Check if |
||||
|
|
|
In addition to testing using the "is" operator, you can decorate your methods to make sure that variables passed to it implement a particular interface, like so:
I'm not sure which version of .Net this was implemented in so it may not work in your version. |
||
|
|
|
This should work :
But nice too :
Or even (not very elegant) :
|
||||
|