I have an array of bytes (any length), and I want to encode this array into string using my own base encoder. In .NET is standard Base64 encoder, but w
.NET
Base64
You can get inspiration from C# implementation of Base32 implementation by Michael Giagnocavo.