Questions tagged «memorystream»



8
将文件从MemoryStream附加到C#中的MailMessage
我正在编写一个程序将文件附加到电子邮件。目前,我正在将使用的文件保存FileStream到磁盘中,然后使用 System.Net.Mail.MailMessage.Attachments.Add( new System.Net.Mail.Attachment("file name")); 我不想将文件存储在磁盘中,我想将文件存储在内存中,然后从内存流中将其传递给Attachment。
113 c#  email  smtp  memorystream 

12
如果未关闭.NET中的MemoryStream,是否会造成内存泄漏?
我有以下代码: MemoryStream foo(){ MemoryStream ms = new MemoryStream(); // write stuff to ms return ms; } void bar(){ MemoryStream ms2 = foo(); // do stuff with ms2 return; } 我分配的MemoryStream是否有可能以后无法以某种方式处置? 我有一个同行审查,坚持要求我手动关闭此链接,但我找不到信息来说明他是否有正确的论点。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.