C# 二进制转base64

public static string Base64EncodeBytes(this byte[] inBytes)
{
return (Convert.ToBase64String(inBytes));
}

你可能感兴趣的:(C# 二进制转base64)