运行子程序(提示消息)失败。解析表达式出错。
内部错误:输入的不是有效的 Base-64 字符串,因为它包含非 Base-64 字符、两个以上的填充字符,或者填充字符间包含非法字符。
原始表达式:string tempPath = Path.Combine(Path.GetTempPath(), "成功.mp3");
if (!File.Exists(tempPath))
{
byte[] fileBytes = Convert.FromBase64String("{base64_编码}");
File.WriteAllBytes(tempPath, fileBytes);
}
return tempPath;(赋值)
(----内存清理v0:运行子程序----)