Be brief!


Keywords
Install
Install-Package Brevity -Version 6.0.0

Documentation

Bumped version from 2.x to 3.x because of a breaking change in the namespaces. If you have been using StringTemplate via the `string.Set()` extension method, you will now need to import namespace `Brevity.StringTemplate`. This was done because Brevity now supports Velocity templates as well by importing namespace `Brevity.Velocity`.

This project will contain misc utility functions that I find myself re-implementing frequently. Most of them are string extension methods. None of it is rocket science. The intention is to enable me to do more with less amount of code, and in some cases make the code more readable. As an example, here's a statement that opens a file, converts the file to a base64 string and then saves the base64 to a new file:

@"c:\temp\data.doc".Open().ToBase64().Save(@"c:\temp\data.txt");

Install via nuget:
PM> Install-Package Brevity