A collection of useful utilities. At the moment, the collection is small but will grow as time and need permits.
- IsNull - as you might expect, checks whether the string is, in fact, null.
- IsNotNull - as you might expect, checks whether the string is not null.
- IsNullOrWhiteSpace - as you might expect, checks whether the string is, in fact, null, empty or whitespace. new
- IsNotNullOrWhiteSpace - as you might expect, checks whether the string is not null, empty or whitespace. new
- FromJson - as you might expect, converts the JSON representation to the requested Type.
- ToJson - as you might expect, converts the object to the appropriate JSON representation.