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.

I have a static class with bunch of extension methods for various types. Is there any utility or the way to split it into several classes - separate class for the each target type.

share|improve this question
Hi, I would define a different class called whatever like typeExtensions for every type you extend, I would keep all these classes in the same file and namespace if they are not too many. – Davide Piras Mar 2 '11 at 14:56

1 Answer

up vote 4 down vote accepted

Putting your various extension methods into different classes is a good idea from a "clean code" perspective, but the main "grouping" of extension methods happens by placing them into different namespaces. The reason is that extension methods are made available by "using" the appropriate namespace.

Putting different groups of extension methods into different namespaces is a good idea since you could have colliding extension methods. If that happens, and each logical group of extension methods is in a fine-grained namespace, you should be able to resolve the conflict by simply removing one of the using statements, thereby leaving the using statement that contains the extension method you actually want.

Here's a link to some best practices:

http://blogs.msdn.com/b/vbteam/archive/2007/03/10/extension-methods-best-practices-extension-methods-part-6.aspx

share|improve this answer
Thanks for the respond. – Peter17 Mar 2 '11 at 14:56
+1 good link, thanks! – Paolo Falabella Mar 2 '11 at 15:01

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.