Possible Duplicate:
Determine if Equals() is an override?
I need to run specific pieces of code for whether a specific type overrides Object.Equals
or not.
How can I check if a type overrides this method?
Typing typeof(mytype).GetMethod("Equals").
in VS brings me a wide list of options, but there's no "IsOverriden" or something like that.