up vote 50 down vote favorite
65
share [g+] share [fb]

The .net framework comes with a bunch of really useful libraries, but there's always something better out there.

What 3rd party libraries have you found that you can't live without now?

is it C5?

is it db4o?

is it something off CodePlex?

Share with the rest of us!

EDIT: Please post both Free and Non-free libraries- but it would be nice if we knew which were which.

link|improve this question
show 3 more comments
feedback

46 Answers

1 2

Log4Net

link|improve this answer
8  
i wish we'd abolish log4net. .NET has a perfectly good Trace system and trace listeners which do everything l4n does. And you don't have to configure logging twice. – Paul Stovell Feb 22 '09 at 6:24
1  
Checkout NLog :) – dario-g Mar 23 '11 at 21:39
show 6 more comments
feedback

SharpZipLib - This is a library for compressing files in zip format.

link|improve this answer
feedback

HTML Agility (Html Parser) - Largely compatible with XmlDocument in .NET, but loose enough to accept real-world HTML.

Micrsoft Enterprise Library "a library of application blocks designed to assist developers with common enterprise development challenges" - Include Logging, Configuration, cross-platform database access and other areas.

link|improve this answer
show 1 more comment
feedback

Moq (a mocking framework).

link|improve this answer
show 3 more comments
feedback

Subsonic. I created a maintainence app for 200 lookup tables (countries, towns, airports etc.) in a day pointing at SQL server. A day later I was able to host the exact same set of tables on MySQL. I wouldn't use this for enterprise scale apps, but for rapid scaffold tooling for CRUD operations this can't be beaten for simplicity.

link|improve this answer
feedback

Elmah

It is indispensible when tracking those errors that only happen in production.

link|improve this answer
feedback

MS Enterprise Library (app blocks for data, logging, validation and security)

link|improve this answer
feedback

WatiN (Web Application Testing in .NET) is wonderful, so easy to automate IE (and soon Firefox). I didn't find it, but someone showed it to me, and I'm very grateful!

link|improve this answer
feedback

C5 (as you mentioned) and the PowerCollections library.

link|improve this answer
show 1 more comment
feedback

Autofac (a fluent and lambda-based IoC/DI container).

link|improve this answer
feedback

DXperience by Developer Express - they make a comprehensive set of UI and ORM components w/source code, and I find their support very responsive and helpful. Not free at all, but well worth the cost IMO.

link|improve this answer
feedback

The AjaxControlToolkit Project On Codeplex and Log4Net

link|improve this answer
feedback

I like StructureMap for dependency injection and inversion of control. Combine that with MbUnit for unit testing, log4net for logging and SubSonic or NHibernate for an ORM (depending on your app) and you are off to a pretty good start for developing most apps.

Best yet, they are all free.

link|improve this answer
feedback

Umbrella

As the founder of Umbrella, the intent of this project on CodePlex is to provide a structure and central repository for extension libraries. We already cover much of that CodeBetter.Extensions is covering and contributors from other libraries have started to merge their content into Umbrella.

It is usint xUnit as its testing framework, is leveraging and extensind parts of Enterprise Library and Unity although it is not bound to it.

In upcoming contributions, we'll add "Umbrella Over DataServices, WCF, EF, WPF, ..."

Feel free to contribute by contacting us on CodePlex.

And don't worry, documentation is on the way...

link|improve this answer
feedback

Here are a good ones not yet mentioned:

link|improve this answer
feedback

Not exactly 3rd party, but does the XNA framework count?

link|improve this answer
feedback

I really like CodeBetter.Extensions, in particular the IEnumerable.Each() extension for looping an action for a collection. I don't have a project without it!

Also, I know you only asked for one, but I must give an honourable mention to the Dynamic LINQ library blogged about my ScottGu here.

I feel i also need to anti-vote Dundas Charts - after spending a lot of money on v6.1, they tell me that in order to upgrade to a minor revision (v6.2), i needed to spend an additional $1500 or so just for the upgrade. I can understand having to pay for a major revision, but a minor one? What about bugs in the software?

link|improve this answer
feedback

NLog

It's lightweight and very fast (fastest than l4n), very simple for configuration and very extensible.

link|improve this answer
feedback

Ninject Framewor. It is a great fluent Dependancy Injection Framework. It is lighter weight and more very quick. I fell in love with it the more I use it in the ASP.NET MVC projects I am working on.

ASP.NET MVC - its about time, and boy are they doing it right.

jQuery - not really a 3rd part Framework for ASP.NET, but its a great compliment to ASP.NET and honestly I couldnt do my job without it.

MS Ajax Client Templates - If you havent checked this out yet, do yourself a favor and check it out. It is a way to bind Javascript Objects to controls and have live templating, so it a 2-way bind like in Silverlight and WPF. Its a great javascript library, that will hopefully get better and more mature.

If anyone is interested in these things, check out my latest 2 blog posts at polymorphicview.blogspot.com to see how I am using them together.

link|improve this answer
feedback

You should mention if you are referring to "FREE" or "NOT FREE" 3rd party libraries.

I find this one very usefull. http://mathnet.opensourcedotnet.info/

link|improve this answer
4  
So is your tool FREE or NOT FREE?? – Brian Schmitt Oct 24 '08 at 15:00
6  
But you told people to mention if their libraries were free or not free, and you didn't specify what yours is in the answer... – Chris Marasti-Georg Oct 24 '08 at 17:15
show 1 more comment
feedback

I'm looking forward to hearing the responses here, because I disagree with this:

The .net framework comes with a bunch of really useful libraries, but there's always something better out there.

Coming from the Java world, I found .NET to be sorely lacking in quality, free 3rd party libraries. Many that exist are half-implemented ports of Java libraries that may or may not have the functionality that you need.

link|improve this answer
show 7 more comments
feedback

Depending on your definition of "library": Mono

link|improve this answer
feedback

The free Krypton Toolkit from Component Factory (part of Krypton Suite which is commercial)

link|improve this answer
feedback

I use SubSonic alot for ORM, Migrations, etc. It's pretty handy! (http://subsonicproject.com/)

Also, it's free.

link|improve this answer
feedback
1 2

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.