1

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.

AndreyAkinshin
  • 18,603
  • 29
  • 96
  • 155

5 Answers5

3

MoreLinq fills much of the gaps in the built-in extensions for LINQ-to-Objects. The project seems to be alive and maintained and is also available as a nuget package (BETA).

angularsen
  • 8,160
  • 1
  • 69
  • 83
2

Some good examples have been put together in Extension overflow

Related to this question

Community
  • 1
  • 1
JDunkerley
  • 12,355
  • 5
  • 41
  • 45
2

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...

Community
  • 1
  • 1
Paolo Tedesco
  • 55,237
  • 33
  • 144
  • 193
1

Why are you looking for such an extension library? It seems that you are missing some functionality in the framework 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.

NullUserException
  • 83,810
  • 28
  • 209
  • 234
Oliver Hanappi
  • 12,046
  • 7
  • 51
  • 68
0

http://dnpextensions.codeplex.com/ is probably the more maintained library now.

Ricky Gummadi
  • 4,559
  • 2
  • 41
  • 67