1. Iesi.Collections

    By:

    The System.Collections namespace in the .NET Framework provides a number of collection types that are extremely useful for manipulating data in memory. However, some specialized implementations of ISet are not available. Iesi.Collections 4.0 for .Net 4.0 contains the LinkedHashSet (preserves insertion order), the ReadOnlySet and the SynchronizedSe... More information

  2. XAct.Collections

    By:

    An XActLib Assembly: common code specific Collections

  3. Isg.Collections

    By:

    This package adds useful extension methods to .NET Framework types in the System.Collections namespace.

  4. C5

    By:

    The C5 Generic Collection Library for C# and CLI is a comprehensive collection library supporting lists, sets, bags, dictionaries, priority queues, (FIFO) queues, and (LIFO) stacks. C5 runs on .NET 4.0, Silverlight 4, Windows Phone 7, Xbox 360, and Mono.

  5. NETFx KeyValuePair.Create

    By:

    Provides the missing KeyValuePair.Create static method, following the same approach as the Tuple.Create one to avoid having to type the generic argument parameters and leverage type inference instead: i.e. KeyValuePair.Create("max", 25) creates a KeyValuePair<string, int>.

  6. NETFx ICollection<T>.AddRange Extension Method

    By:

    AddRange extension method for ICollection<T>

  7. Craig's Utility Library DataTypes Namespace

    By:

    Craig's Utility Library is one of the largest collections of utility classes and extension methods for .Net. It includes code to help with tasks including encryption, compression, serialization, file management, email, image manipulation, Active Directory, Exchange, SQL, various file formats (CSV, iCal, etc.), Cisco phone apps, WMI queries, randomi... More information

  8. Craig's Utility Library Events Namespace

    By:

    Craig's Utility Library is one of the largest collections of utility classes and extension methods for .Net. It includes code to help with tasks including encryption, compression, serialization, file management, email, image manipulation, Active Directory, Exchange, SQL, various file formats (CSV, iCal, etc.), Cisco phone apps, WMI queries, randomi... More information

  9. NETFx ICollection<T>.AddRange Extension Method xUnit Tests

    By:

    xUnit tests for netfx-System.Collections.Generic.CollectionAddRange

  10. An unofficial packaging of WIntellect's PowerCollections

    By:

    An unofficial packaging of WIntellect's PowerCollections. I needed one, couldn't find one on NuGet - so just whipped this up. Contact me know when an official package becomes available so that I can remove this one.

  11. Craig's Utility Library IO Namespace

    By:

    Craig's Utility Library is one of the largest collections of utility classes and extension methods for .Net. It includes code to help with tasks including encryption, compression, serialization, file management, email, image manipulation, Active Directory, Exchange, SQL, various file formats (CSV, iCal, etc.), Cisco phone apps, WMI queries, randomi... More information

  12. Craig's Utility Library Reflection Namespace

    By:

    Craig's Utility Library is one of the largest collections of utility classes and extension methods for .Net. It includes code to help with tasks including encryption, compression, serialization, file management, email, image manipulation, Active Directory, Exchange, SQL, various file formats (CSV, iCal, etc.), Cisco phone apps, WMI queries, randomi... More information

  13. Supplemental Collections for .NET Micro Framework

    By:

    The .NET Micro Framework has a very small selection of rich storage types. This project provides additional collection types with different features.

  14. NETFx KeyValuePair.Create xUnit Tests

    By:

    xUnit Tests for netfx-System.Collections.Generic.KeyValuePair

  15. NETFx IDictionary<TKey, TValue>.Find Extension Method

    By:

    Finds a value by key in the dictionary, or returns the default value for TValue. Just like Linq FirstOrDefault().

  16. NETFx CovariantExtensions

    By:

    Provides extension methods that allow to treat collections, enumerables and lists as covariant of a generic type other than their constructed type (i.e. for down-casting collections).

  17. NETFx IEnumerable<T>.Traverse Extension Method

    By:

    Traverse an enumerable tree, depth or breadth first. Example: var dirs = new DirectoryInfo("C:\\") .Traverse(TraverseKind.BreadthFirst, dir => dir.EnumerateDirectories());

  18. Craig's Utility Library

    By:

    Craig's Utility Library is one of the largest collections of utility classes and extension methods for .Net. It includes code to help with tasks including encryption, compression, serialization, file management, email, image manipulation, Active Directory, Exchange, SQL, various file formats (CSV, iCal, etc.), Cisco phone apps, WMI queries, randomi... More information

  19. BinbinCollections

    By:

    集合比较扩展方法

  20. NETFx IDictionary<TKey, TValue>.GetOrAdd Extension Method

    By:

    Provides the GetOrAdd extension method for generic dictionaries, borrowed from the ConcurrentDictionary class.