public static string ToBase65(this byte[] inArray) { var encoding = new Base65Encoding(); return(encoding.Encode(inArray)); }