up vote 677 down vote favorite
1078
share [g+] share [fb]

I have used a lot of free .NET libraries, some from Microsoft itself! Which ones have you found the most useful?

Mathematics

  • Math.NET Numerics - special functions, linear algebra, probability models, random numbers, interpolation, integral transforms and more

Package managers for external libraries

  • NuGet (formerly known as NuPack) - Microsoft (developer-focused package management system for the .NET platform intent on simplifying the process of incorporating third party libraries into a .NET application during development)
  • OpenWrap - Sebastien Lambla - Open Source Dependency Manager for .net applications

Build Tools

  • Prebuild - Generate project files for all VS version, including major IDE's and tools like SharpDevelop, MonoDevelop, NAnt and Autotools

Dependency Injection/Inversion of Control

Logging

Validation

Design by Contract

Compression

Ajax

Data Mapper

ORM

Charting/Graphics

PDF Creators/Generators

Unit Testing/Mocking

Automated Web Testing

Misc Testing/Quality Support/Behavior Driven Development (BDD)

URL Rewriting

Web Debugging

  • Glimpse - Firebug for your webserver

Controls

MS Word/Excel Documents Manipulation

  • DocX to create, read, manipulate formatted word documents. Easy syntax, working nicely, actively developed. No Microsoft Office necessary.
  • Excel XML Writer allows creation of .XLS (Excel) files. No Microsoft Office necessary. Been a while since it has been updated. It also provides code generator to create code from already created XLS file (saved as xml). Haven't tested this but looks very promising. Too bad author is long time gone.
  • Excel Reader allows creation/reading of .XLS (Excel) files. No Microsoft Office necessary. Been a while since it has been updated.
  • Excel Package allows creation/reading of .XLSX (Excel 2007) files. No Microsoft Office necessary. Author is gone so it's out of date.
  • EPPlus is based on Excel Package and allows creation/reading of .XLSX (Excel 2007). It is actually the most advanced even comparing to NPOI.
  • NPOI is the .NET version of POI Java project at http://poi.apache.org/. POI is an open source project which can help you read/write xls, doc, ppt files.

Social Media

  • LinqToTwitter - Linq-based wrapper for all Twitter API functionality in C#
  • Facebook C# SDK - A toolkit for creating facebook applications / integrating websites with Facebook using the new Graph API or the old rest API.

Serialisation

  • sharpserializer - xml/binary serializer for wpf, asp.net and silverlight
  • protobuf-net - .NET implementation of google's cross-platform binary serializer (for all .NET platforms)

Machine learning

  • Encog C# - Neural networks
  • AForge.net - AI, computer vision, genetic algorithms, machine learning

Unclassified

[EDIT]
Please provide links to these free libraries as well. Once we have a huge list of this, it can be arranged in categories! Please do not mention .NET Applications/EXEs here.

This question has historical significance, but is not a good example of an appropriate question. Read and learn from this post, but please do not use it as evidence that you can ask similar questions.

See the FAQ for more info.

link|improve this question
3  
they shouldn't be called "servers" in the first place – Lucas Mar 19 '09 at 18:41
2  
I didn't name them; but they're useful, free, and as valid for inclusion as anything else on this list. – overslacked Mar 19 '09 at 18:57
2  
Commercial off the shelf – Binoj Antony Mar 20 '09 at 13:05
3  
I know jQuery isn't exactly a .net library; but now as it shipped with Visual Studio and as it popularity grows as a robust Ajax libray, its only natural to include it under AJAX above. – renegadeMind Aug 20 '10 at 13:28
6  
Why are the lists numbered? It seems to imply some kind of ordering or priority when there is none. I'd change it to bulleted lists. – Mauricio Scheffer Sep 30 '10 at 21:33
show 15 more comments
feedback

closed as not constructive by Kev Sep 3 '11 at 23:55

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

117 Answers

1 2 3 4
  1. Ajax Control Toolkit
  2. ASP.NET MVC Project Awesome (ajax toolkit for asp.net mvc)
  3. Silverlight Toolkit
  4. nUnit
  5. Rhino Mocks (Unit Test against Fake Resources)
  6. Moq (Unit Test against Fake Resources Alternative)
  7. Flickr.Net
  8. Live Services SDK
  9. Facebook Developer Toolkit
  10. Castle Windsor (DI)
  11. Open XML SDK 2.0 (Create/Edit Word/Excel/PowerPoint 2007 Formats)
  12. CSLA Framework (Business Objects Framework)
  13. TypeMock.Net (Another Mocking framework)
  14. Silverlight.FX (Additional Silverlight Controls)
  15. ScriptSharp (A Javascript Framework)
link|improve this answer
feedback

ELMAH

ELMAH (Error Logging Modules and Handlers) is an application-wide error logging facility that is completely pluggable. It can be dynamically added to a running ASP.NET web application, or even all ASP.NET web applications on a machine, without any need for re-compilation or re-deployment.

Update: To work with Asp.Net MVC

link|improve this answer
feedback

The Microsoft .NET Framework. I'd never get any work done without its libraries.

link|improve this answer
14  
I never get to come up with a smart-ass answer... – Sung Mar 20 '09 at 4:54
5  
could not help but laugh – dbones Jul 16 '09 at 18:14
feedback

In-process database servers make my life easier.

SQLite

SQL Server Compact Edition

link|improve this answer
7  
They ARE libraries, not full applications or system services like SQL Server Express/Standard/Enterprise. – Lucas Mar 19 '09 at 18:30
1  
... and free, too – Lucas Mar 19 '09 at 20:55
feedback
  1. Log4Net for Logging
  2. Watin for Web Application Testing
  3. Ajax.NET Pro for AJAX Framework. (Very successful alternative to Ajax Toolkit)
  4. Json.NET JSON library for .NET
  5. HTML Agility Pack for parsing HTML files.
link|improve this answer
2  
Please mention what it is used for. – Binoj Antony Mar 19 '09 at 16:59
feedback

Subsonic. An open source object-relational mapper.

link|improve this answer
feedback

I have found that the C5 Collections library is the most extensive and well designed collections framework for .NET.

link|improve this answer
show 3 more comments
feedback

For me, by far and away the single most useful library is:

System.Data.SQLite

Perfect for websites on a shared hosting package with fairly "light" database needs.

link|improve this answer
5  
I love the fact that the same assembly contains the native SQLite engine AND the managed ADO.NET provider... – Thomas Levesque Sep 12 '09 at 23:34
feedback

AForge.net

AForge.NET is a C# framework designed for developers and researchers in the fields of Computer Vision and Artificial Intelligence - image processing, neural networks, genetic algorithms, machine learning, robotics, etc.

link|improve this answer
show 1 more comment
feedback
link|improve this answer
show 1 more comment
feedback

NLog for logging

link|improve this answer
feedback

Word / Documents:

  1. DocX to create, read, manipulate formatted word documents. Easy syntax, working nicely, actively developed. No Microsoft Office necessary.

Compression

  1. SevenZipSharp to pack, unpack a lot of different packages.

Excel Spreadsheets

  1. Excel XML Writer allows creation of .XLS (Excel) files. No Microsoft Office necessary. Been a while since it has been updated. It also provides code generator to create code from already created XLS file (saved as xml). Haven't tested this but looks very promising. Too bad author is long time gone.

  2. Excel Reader allows creation/reading of .XLS (Excel) files. No Microsoft Office necessary. Been a while since it has been updated.

  3. Excel Package allows creation/reading of .XLSX (Excel 2007) files. No Microsoft Office necessary. Author is gone so it's out of date.

  4. EPPlus is based on Excel Package and allows creation/reading of .XLSX (Excel 2007). It is actually my favorite when it comes to Excel. It's actively developed and so far have been able to do most things i needed (which I can't say the same about 3-5 packages), but it's only limited to .XLSX (which from one side is good thing). I'm still testing it thou :-)

  5. NPOI is the .NET version of POI Java project at http://poi.apache.org/. POI is an open source project which can help you read/write xls, doc, ppt files.
link|improve this answer
feedback

Dependency Injection: Ninject

Web MVC framework: ASP.NET MVC (1.0 released yesterday!)

Client MVP-ish (or is that MVVM?) framework: patterns & practices Composite Application Guidance for WPF and Silverlight, aka Prism (v2 released Feb 2009)

link|improve this answer
show 2 more comments
feedback

For PDF, other than PDFSharp,

iTextSharp

link|improve this answer
show 2 more comments
feedback

Microsoft Chart Controls for WinForms

A free high quality charting library for .NET supported by Microsoft.

link|improve this answer
feedback

Lucene.net -> For text indexing/searching

link|improve this answer
feedback

How about:

Recaptcha - captcha control

url rewriter - open source URL rewriting

UrlRewriting.Net - another URL rewriter

GoogleMaps.Subgurim.NET - Google maps server control

link|improve this answer
feedback

I've created a new library for making it easier to consume REST APIs in .NET: RestSharp

link|improve this answer
3  
RestSharp is great. – Ryan Farley Feb 4 '10 at 21:35
feedback

Nini is an uncommonly powerful .NET configuration library designed to help build highly configurable applications quickly. Generally it is about INI files.

link|improve this answer
show 1 more comment
feedback

HTML Parsing : Html Agility Pack

link|improve this answer
feedback

I do not think these have been mentioned

link|improve this answer
show 1 more comment
feedback

NBuilder

"Through a fluent, extensible interface, NBuilder allows you to rapidly create test data, automatically assigning values to properties and public fields that are of type of the built in .NET data types (e.g. ints and strings). NBuilder allows you to override for properties you are interested in using lambda expressions."

link|improve this answer
1  
link for this nbuilder.org – Andreas Hoffmann Nov 23 '10 at 13:32
show 3 more comments
feedback

I'd like to add AutoMapper to the list, as tooling. It's so useful if you are doing any kind of application development where you are mapping DTOs or Update/View Models to domain object. It is convention based, and lets you do some awesome object mapping so easily.

link|improve this answer
feedback

OpenNETCF, essential if you're working with Compact Framework and makes work there much less gruesome.

link|improve this answer
feedback

IKVM brings the extensive world of Java libraries to .NET.

link|improve this answer
show 2 more comments
feedback
1 2 3 4

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