gpt4 book ai didi

c# - 我在文件中写入数据时收到错误消息 -- 无法访问一次性对象。对象名称 :MS. internal.InternalMemorystream

转载 作者:行者123 更新时间:2023-11-30 18:08:54 25 4
gpt4 key购买 nike

这是代码:

 public static void SaveFile(Stream stream, string fileName = "")
{
using (IsolatedStorageFile file = IsolatedStorageFile.GetUserStoreForApplication())
{
IsolatedStorageFileStream fs = file.CreateFile(fileName);

var filesize = stream.Length;
var getContent = new byte[(int)filesize];
stream.Read(getContent, 0, (int)filesize);
fs.Write(getContent, 0, (int)filesize);

fs.Close();
}
}

最佳答案

您发布的代码没有任何问题。错误出在您用来调用此函数的代码中。您很可能正在传递一个已过早处置的 Stream

关于c# - 我在文件中写入数据时收到错误消息 -- 无法访问一次性对象。对象名称 :MS. internal.InternalMemorystream,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2871222/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com