iTextSharp.xmp.XmpUtils.EncodeBase64 C# (CSharp) Method

EncodeBase64() public static method

Convert from a byte array to a base64 encoded string.
public static EncodeBase64 ( byte buffer ) : string
buffer byte /// the byte array to be converted
return string
        public static string EncodeBase64(byte[] buffer) {
            return GetString(Base64.Encode(buffer));
        }