/MoreDotNet

A combination of helpful extension methods.

Primary LanguageC#GNU General Public License v3.0GPL-3.0

MoreDotNet

Build status NuGet version

Summary

The project focuses on providing handy extension methods for:

  • Collections
  • Common DotNet types like string, int, object, Color, Bitmap etc.
  • Wrappers for transforming common static methods to instance methods Example:
string.IsNullOrWhiteSpace(testStringVar)

Is transformed to:

testStringVar.IsNullOrWhiteSpace()

Installation

NOTE: The package is still under development and some bugs may exist!

To install via NuGet use:

Install-Package MoreDotNet