gpt4 book ai didi

c# - System.IO.Stream 不包含 CopyTo() 的定义

转载 作者:行者123 更新时间:2023-12-02 17:43:52 24 4
gpt4 key购买 nike

嗨,我收到错误消息“

'System.IO.Stream' does not contain a definition for 'CopyTo' and no extension method 'CopyTo' accepting a first argument of type 'System.IO.Stream' could be found (are you missing a using directive or an assembly reference?)

" 我在我的项目中使用以下代码行。

Bitmap img;
using (var ms = new MemoryStream())
{
fu.PostedFile.InputStream.CopyTo(ms);
ms.Position = 0;
img = new System.Drawing.Bitmap(ms);
}

为什么我会收到这个错误?如何解决?
请帮助我...

最佳答案

Stream.CopyTo 是在 .NET 4 中引入的。由于您的目标是 .Net 2.0,因此它不可用。在内部,CopyTo 主要做这个(尽管有额外的错误处理)所以你可以只使用这个方法。为了方便起见,我将其作为扩展方法。

//it seems 81920 is the default size in CopyTo but this can be changed
public static void CopyTo(this Stream source, Stream destination, int bufferSize = 81920)
{
byte[] array = new byte[bufferSize];
int count;
while ((count = source.Read(array, 0, array.Length)) != 0)
{
destination.Write(array, 0, count);
}
}

所以你可以简单地做

using (var ms = new MemoryStream())
{
fu.PostedFile.InputStream.CopyTo(ms);
ms.Position = 0;
img = new System.Drawing.Bitmap(ms);
}

关于c# - System.IO.Stream 不包含 CopyTo() 的定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17390729/

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