K
Krish
I have an object of a class. Now I want to know whether this class
implements a particular interface or now.
How do i do that.
Interface ISomeInterface
{
}
MyClass objCls= new MyClass();
//how do I check from objCLS whether MyClass implements the
ISomeInterface interface or not?
Thanks in advance
Kris
implements a particular interface or now.
How do i do that.
Interface ISomeInterface
{
}
MyClass objCls= new MyClass();
//how do I check from objCLS whether MyClass implements the
ISomeInterface interface or not?
Thanks in advance
Kris