Is there any way I can add a static extension method to a class.
specifically I want to overload Boolean.Parse to allow an int argument.
|
1
|
Is there any way I can add a static extension method to a class. specifically I want to overload Boolean.Parse to allow an int argument.
|
||
|
|
|
|
In short, no, you cant. Long answer, extension methods is just syntactic sugar. IE: if you have an extension method on string let's say:
When you then call it:
the compiler just turns it into:
So as you can see, there's no way to do that for static methods. And another thing just dawned on me: what would really be the point of being able to add static methods on existing classes? You can just have your own helper class that does the same thing, so what's really the benfit in being able to do: Bool.Parse(..) vs. Helper.ParseBool(..); Doesn't really bring much to the table... |
||||||||||||
|
|
|
It doesn't look like you can. See here for a discussion on it I would very much like to be proven wrong though. |
||
|
|
|
|
No, but you could have something like:
|
||
|
|
|
|
Would an extension for int work?
Then you can call it like this:
|
||
|
|
|
|
You could add an extension method to int
used like this
|
||
|
|