vote up 34 vote down star
52

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.

flag
show 3 more comments

44 Answers

1 2 next
vote up 31 vote down

Log4Net

link|flag
2  
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 at 6:24
show 6 more comments
vote up 24 vote down

NHibernate

link|flag
vote up 20 vote down

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

link|flag
vote up 13 vote down

Rhino Mocks

link|flag
vote up 12 vote down

NUnit

link|flag
show 1 more comment
vote up 12 vote down

Castle - ActiveRecord, Windsor, Monorail, NVelocity - every project I work on uses at least one.

link|flag
show 1 more comment
vote up 11 vote down

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|flag
show 1 more comment
vote up 11 vote down

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|flag
vote up 9 vote down

Moq (a mocking framework).

link|flag
show 3 more comments
vote up 8 vote down

C5 (as you mentioned) and the PowerCollections library.

link|flag
show 1 more comment
vote up 8 vote down

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

link|flag
vote up 6 vote down

The AjaxControlToolkit Project On Codeplex and Log4Net

link|flag
vote up 6 vote down

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|flag
vote up 6 vote down

Elmah

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

link|flag
vote up 6 vote down

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|flag
vote up 5 vote down

xUnit

link|flag
show 2 more comments
vote up 4 vote down

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

link|flag
vote up 4 vote down

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|flag
4  
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 2 more comments
vote up 4 vote down

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

link|flag
vote up 4 vote down

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|flag
vote up 4 vote down

Here are a good ones not yet mentioned:

link|flag
vote up 3 vote down

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|flag
vote up 3 vote down

No love for Umbrella?

link|flag
show 2 more comments
vote up 3 vote down

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|flag
vote up 3 vote down

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|flag
vote up 2 vote down

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

Also, it's free.

link|flag
vote up 2 vote down

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|flag
show 7 more comments
vote up 2 vote down

iBATIS.NET for data mapping (free).

link|flag
vote up 2 vote down

Depending on your definition of "library": Mono

link|flag
vote up 2 vote down

For the Desktop Apps I like to use commercial component suite by DevExpress

link|flag
1 2 next

Your Answer

Get an OpenID
or

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