How do I convert this array:
int[] ints = { 233, 154, 24, 196, 40, 203, 56, 213, 242, 96, 133, 54, 120, 146, 46, 3 };
To this string?
String base64Encoded = "6ZoYxCjLONXyYIU2eJIuAw==";
Usage:
String base64Encoded = ConvertToBase64(int[] ints);
(I'm asking this questions because byte in Java is signed, but byte in C# is unsigned)