i want to get the method but there are more then one overload. For example in object i tried to get 'Equals'. When using

    public virtual bool Equals(object obj);
    public static bool Equals(object objA, object objB);

writing typeof(Object).GetMethod("Equals") got me an exception, writing typeof(Object).GetMethod("public virtual bool Equals(object obj)") got me null. How do i specify which method i want in this case?

link|improve this question

74% accept rate
feedback

2 Answers

up vote 7 down vote accepted

Use one of the overloads that lets you specify the parameter types.

For example:

var staticMethod = typeof(Object).GetMethod("Equals",
      BindingFlags.Static | BindingFlags.Public,
      null,
      new Type[] { typeof(object), typeof(object) },
      null);

var instanceMethod = typeof(Object).GetMethod("Equals",
      BindingFlags.Instance | BindingFlags.Public,
      null,
      new Type[] { typeof(object) },
      null);

Or alternatively:

var staticMethod = typeof(Object).GetMethod("Equals",
      new Type[] { typeof(object), typeof(object) });

var instanceMethod = typeof(Object).GetMethod("Equals",
      new Type[] { typeof(object) });
link|improve this answer
Ah ha! i tried the overload and only used BindingFlags.Instance. No wonder why i got null (and i tried BindingFlags.Public by itself as well without thinking). I want to check if one object overrides a method so i am trying to compare these methods and i get false. Is there a way for me to see if "Equals" is the same as its base or has been overridden? -edit- i am trying to write a poor but suitable compare by reflection – acidzombie24 Dec 6 '10 at 10:21
@acidzombie24: I'm not sure, to be honest. I think you could probably get the method declared in this class, and then the method declared on the base class, and see whether they're the same... but I'm not sure. – Jon Skeet Dec 6 '10 at 10:23
I dont seem able to compare them HOWEVER i can write .GetBaseDefinition() so what i did was call this with the method in the base and that should tell me if one was overridden or not – acidzombie24 Dec 6 '10 at 10:40
@acidzombie24: That sounds like a good way of checking, yes :) – Jon Skeet Dec 6 '10 at 10:41
ahh, it didnt work. Its strange. I also looked at attributes with no luck. However i found using .DeclaringType.Name will report the classname which dummy defines as object and myclass returns itself. It looks like i am set – acidzombie24 Dec 6 '10 at 11:12
feedback
MethodInfo methodInfo = typeof(object).GetMethod("Equals", new Type[] { typeof(object), typeof(object) });
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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