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

Using dynamic pattern perhaps? You can call any method/property using the dynamic keyword, right? How to check whether the method exist before calling myDynamicObject.DoStuff(), for example?

share|improve this question
What is the type of myDynamicObject? Is it a class derived from DynamicObject? – Danny Chen Feb 25 '11 at 7:04
something declared with the dynamic keyword – Louis Rhys Feb 25 '11 at 9:36

4 Answers

up vote 49 down vote accepted

You could write something like that :

public static bool HasMethod(this object objectToCheck, string methodName)
{
    var type = objectToCheck.GetType();
    return type.GetMethod(methodName) != null;
} 

Edit : you can even do an extension method and use it like this

myObject.HasMethod("SomeMethod");
share|improve this answer
GetType() will return the runtime type? (i.e. not object?) – Louis Rhys Feb 25 '11 at 7:01
1  
yes, GetType() returns the running type whereas typeof() would return object. – Julien Feb 25 '11 at 7:03
1  
According to the docs GetType() will return "The exact runtime type of the current instance". – tzup Feb 25 '11 at 7:03
....Which is System.com_object – Fraser Feb 25 '11 at 7:13
Also, the extension method would need to be static. – Fraser Mar 15 '11 at 5:16
show 1 more comment

via Reflection

 var property = object.GetType().GetProperty("YourProperty")
 property.SetValue(object,some_value,null);

Similar is for methods

share|improve this answer

Wouldn't it be better to not use any dynamic types for this, and let your class implement an interface. Then, you can check at runtime wether an object implements that interface, and thus, has the expected method (or property).

public interface IMyInterface
{
   void Somemethod();
}


IMyInterface x = anyObject as IMyInterface;
if( x != null )
{
   x.Somemethod();
}

I think this is the only correct way.

The thing you're referring to is duck-typing, and is usefull in scenario's where you already know that the object has the method, but the compiler cannot check for that. This is usefull in COM interop scenario's for instance. (check this article)

If you want to combine duck-typing with reflection for instance, then I think you're missing the goal of duck-typing.

share|improve this answer
what if the object can be an object provided by the .NET framework, and I cannot declare it to implement anything? – Louis Rhys Feb 25 '11 at 9:39
What's the problem ? You can check whether the 'object' is such an object, provided by the .NET framework just in the same way – Frederik Gheysels Feb 25 '11 at 10:09
for example, you want to check whether there is an "Add" method in an object. ANd the object can be a List<int>, or some other class that's not an IEnumerable – Louis Rhys Feb 25 '11 at 13:28
3  
Perhaps you should take a look at scripting an Adobe product with COM. The same function call can return entirely different COM objects, and by (Adobe's) design, their only common ancestor is object. Also: this is a commonplace pattern in pretty much any modern dynamic scripting language (Python, Javascript, VB script, PHP, Lua... I could go on and on). It's not a bug, it's a feature. – Tim Keating Dec 3 '11 at 14:36
1  
It is a smell but it was created by microsoft. Look at WebControls such as Button, LinkButton, etc. They both implement OnClientClick property but, say, ListControl and Panel do not. OnClientClick is not defined in an interface so reflection is the only option. – HammerIp Oct 16 '12 at 12:41
show 1 more comment

This make sense

try
{
    myDynamicObject.DoStuff();
} catch (ObjectDisposedException e)
{
    // now I know object has been disposed or function not exists
}
share|improve this answer
2  
Are you sure that an ObjectDisposedException is thrown when you call a method that doesn't exist ? And what if the object is not disposable ? – Frederik Gheysels Feb 25 '11 at 7:00
7  
This is called programming by exception. Not a recommended idea in general. – tzup Feb 25 '11 at 7:01
1  
The RuntimeBinderException would be thrown... – Fraser Feb 25 '11 at 7:15

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.