4

I'm building my own libraries, but I'm wondering what's already available for extending string, numeric types, most importantly, IEnumerable. What am I missing out?

Adriano Carneiro
  • 57,693
  • 12
  • 90
  • 123

2 Answers2

2

There are some on Codeplex, including Extension Overflow, which is based on the question, What are your favorite extension methods for C#? (codeplex.com/extensionoverflow) .

Community
  • 1
  • 1
Mark Cidade
  • 98,437
  • 31
  • 224
  • 236
1

CodePlex is a good place to look for this sort of thing, for example:

The .NET Extension Library

The .NET Extension Library - Contents

This one is probably a bit out of date now given recent .NET 4.0 advances:

Wintellect's Power Collections

Community
  • 1
  • 1
Kev
  • 118,037
  • 53
  • 300
  • 385