Is it a good idea to use an extension method on the Object class?
I was wondering if by registering this method if you were incurring a performance penalty as it would be loaded on every object that was loaded in the context.
|
Is it a good idea to use an extension method on the Object class? I was wondering if by registering this method if you were incurring a performance penalty as it would be loaded on every object that was loaded in the context. |
|||||
|
|
In addition to another answers: there would be no performance penalty because extension methods is compiler feature. Consider following code:
The call to
|
|||
|
|
There will be no performance penalty as it doesn't attach to every type in the system, it's just available to be called on any type in the system. All that will happen is that the method will show on every single object in intellisense. The question is: do you really need it to be on object, or can it be more specific. If it needs to be on object, the make it for object. |
|||||
|
|
If you truly intend to extend every object, then doing so is the right thing to do. However, if your extension really only applies to a subset of objects, it should be applied to the highest hierarchical level that is necessary, but no more. Also, the method will only be available where your namespace is imported. I have extended
I also overloaded it to take in a
I have since expanded this to also attempt to parse |
|||||
|
|
Yes, there are cases where it is a great idea in fact.Tthere is no performance penalty whatsoever by using an extension method on the Object class. As long as you don't call this method the performance of your application won't be affected at all. For example consider the following extension method which lists all properties of a given object and converts it to a dictionary:
|
|||
|
|