System.IO.BufferedStream.Write 方法

方法描述

将字节复制到缓冲流,并将缓冲流内的当前位置前进写入的字节数。

语法定义(C# System.IO.BufferedStream.Write 方法 的用法)

public override void Write(
	byte[] array,
	int offset,
	int count
)

参数/返回值

参数值/返回值 参数类型/返回类型 参数描述/返回描述
array System-Byte[] 字节数组,从该字节数组将 count 个字节复制到当前缓冲流中。
offset System-Int32 缓冲区中的偏移量,从此处开始将字节复制到当前缓冲流中。
count System-Int32 要写入当前缓冲流中的字节数。
返回值 void

提示和注释

System.IO.BufferedStream.Write 方法例子

此代码示例摘自一个为 BufferedStream 类提供的更大的示例。

// Send the data using the BufferedStream.
Console.WriteLine("Sending data using BufferedStream.");
startTime = DateTime.Now;
for(int i = 0; i < numberOfLoops; i++)
{
    bufStream.Write(dataToSend, 0, dataToSend.Length);
}
bufStream.Flush();
bufferedTime = (DateTime.Now - startTime).TotalSeconds;
Console.WriteLine("{0} bytes sent in {1} seconds.\n",
    numberOfLoops * dataToSend.Length,
    bufferedTime.ToString("F1"));

异常

异常 异常描述
ArgumentException array 的长度减去 offset 小于 count。
ArgumentNullException array 为 null。
ArgumentOutOfRangeException offset 或 count 为负。
IOException 流关闭或为 null。
NotSupportedException 流不支持写入。
ObjectDisposedException 在流关闭后调用方法。

命名空间

namespace: System.IO

程序集: mscorlib(在 mscorlib.dll 中)

版本信息

.NET Framework 受以下版本支持:4、3.5、3.0、2.0、1.1、1.0 .NET Framework Client Profile 受以下版本支持:4、3.5 SP1

适用平台

Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。