Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
NeilMacMullen authored Mar 3, 2024
1 parent a5425d0 commit eb70078
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
# NotNullStrings
# NotNullStrings

This library conatains a small set of useful C# string extension methods aimed at making string manipulation and handling less painful.

Methods follow the null-object pattern; i.e. the library will return *empty* strings or arrays rather than null. When null strings are supplied as arguments they will be treated as if empty. E.g.

```CSharp
var blank = null.IsBlank() ; // returns true
```

0 comments on commit eb70078

Please sign in to comment.