Top 20 NuGet Packages
Converts a date time to a readable natural time (i.e. '10 hours', '2 years') or relative time (i.e. '5 days ago').
xUnit tests for netfx-System.Collections.Generic.DateTimeToNaturalTime
xUnit tests for netfx-System.Windows.Threading.DispatcherInvokeExtensions
Provides full reflection capabilities using C# 4.0 dynamic syntax, including invoking and accessing public, internal or private, instance or static members including constructors.
Provides unit tests for DynamicXml package.
Provides dinamic filtering of parts and exports from an underlying reflection-based catalog using a simple lambda expression that can inspect the export, its metadata and its exporting reflected type (part).
Example: var filtered = new FilteringReflectionCatalog(innerCatalog)
{
// Filter all parts...
A simpler NameValueCollection-derived class that uses HTTP query string semantics and renders to a query string when ToString is invoked.
Tests for netfx-System.Net.Http.HttpNameValueCollection
Finds a value by key in the dictionary, or returns the default value for TValue. Just like Linq FirstOrDefault().
xUnit tests for netfx-System.Collections.Generic.DictionaryFind
Provides the GetOrAdd extension method for generic dictionaries, borrowed from the ConcurrentDictionary class.
Exposes a ForEach<T> extension method on IEnumerable<T>, just like List<T> does.
Hate checking for nulls in Linq queries? Turn any null enumerable into an empty one as needed!
var id = schema.Elements.EmptyIfNull().FirstOrDefault(x => x == "Id")
xUnit Tests for netfx-System.Collections.Generic.IEnumerable.EmptyIfNull
Generates Lorem Ipsum words for use in tests.
xUnit tests for netfx-System.ISerializer, to be used by implementations of ISerializer interface.
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>.
Allows combining linq expressions using logic operators And, AndAlso, Or and OrElse. Compatible with Entity Framework, NHibernate and Linq to SQL query providers.
See http://kzu.to/iT3X73 for more information.
xUnit Tests for netfx-System.Linq.Expressions.ExpressionCombiner
xUnit tests for netfx-System.Componentmodel.LocalizableAttributes