Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In designing a library that is fluent and that relies on extension functions what would be a way to provide an alternative behavior of an extensions function?

So for instance a library that does some kind of formatting:

(123.456879)
   .RoundTo(2) // Rounds to 2 places
   .ToCurrency() // Applies the appropriate currency symbol
   .ToString()

Given that RoundTo, and ToCurrency would be extension functions, what would be a way to change the behavior of RoundTo and/or ToCurrency?

Thanks, L-

share|improve this question
What do you mean by "changing the behavior"? Could you make an example of what you would like to achieve? – Paolo Tedesco Feb 14 '11 at 19:59
Edit Changed the word Override to 'provide an alternative behavior' – lucidquiet Feb 14 '11 at 20:13
I'm sorry, I really can't see what you mean with "provide an alternative behavior" either :) Can you make an example? when do you want this "alternative behavior"? – Paolo Tedesco Feb 14 '11 at 20:15
An example would be to maybe change the behavior of ToCurrency() that changes the output from '$123.45' to '$ 123.45' with a space between the $ and the number. Which be specific to the clients of this library. – lucidquiet Feb 14 '11 at 20:17

1 Answer

If by overriding you mean having an extension function virtual in a base class and overridden in a derived class, then you cannot - extension functions must be static, and static functions cannot be overridden.

EDIT: after your clarification, maybe you could write a configuration section for the library (or just use the application settings) and have your library read the configuration parameters.

share|improve this answer
Right, I changed 'override' to 'provide an alternative behavior' to avoid the normal usage of 'override'. – lucidquiet Feb 14 '11 at 20:14

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.