views:

140

answers:

3

Hello everybody. I am looking for a good Extensions library (library with a great number of extensions methods) in C# for standard type. I have found some libraries on Codeplex, but they are considered to be very weak by me.

Edit: I need a library which implements different mathematical functions for different (more the better) purposes.

A: 

Why are you looking for such an extension library? It seems that you are missing some functionality in the framwork you are not wanting to implement yourself.

If you want to get any useful answers you need to tell us what purpose the library should fulfill.

If you are missing some features in Linq, you can look at MoreLinq.

Oliver Hanappi
+2  A: 

Some good examples have been put together in Extension overflow

Related to this question

JDunkerley
+2  A: 

You could check the Extension Overflow project on Codeplex, which was born from this post.

Otherwise, if you are looking for a math library, have a look at C# Programming Tools on MSDN. I don't know if the math libraries there contain lots of extension methods, anyway...

Paolo Tedesco