Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
好的,事实证明我正在使用的这个第 3 方组件将电子邮件附件存储在字符串类型的属性中(它已经被解码)。
我现在如何将其存储到文件中?
它有:文件名、编码类型和文件的字符串表示。
使用 StreamWriter/TextWriter 类打开文件并调用 .Write 方法。或者,您可以先使用 Convert.ToBase64String 对其进行 base64 编码。