Base62 Convertor for .Net
Convert between byte array and base62 string.
Special thanks to Mengye Ren and his base62-csharp, and Daniel Destouche and his base62.
var s = (new byte[] { 116, 32, 8, 99, 100, 232, 4, 7 }).ToBase62();
var b = "T208OsJe107".FromBase62();
The MIT License
More info see LICENSE