Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Teodor92 authored Sep 30, 2016
1 parent 13baade commit f39437a
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,22 @@

## Summary

The project focuses on providing handy extension methods for common DotNet types like string, int, object, Color, Bitmap etc.
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

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

To install via NuGet use:

Expand Down

0 comments on commit f39437a

Please # to comment.