两个字段f1,f2的内容合并显示在richTextBox中
MemoryStream strm1;
byte[] buf1;
buf1=(byte[])row["f1"];
strm1 = new MemoryStream(buf1);
MemoryStream strm2;
byte[] buf2;
buf2=(byte[])row["f2"];
strm2 = new MemoryStream(buf2);
strm1.WriteTo(strm2);
richTextBox.LoadFile(strm2,RichTextBoxStreamType.RichText);运行出错"未处理的“System.ArgumentException”类型的异常出现在 mscorlib.dll 中。其他信息: 偏移和长度已超出数组界限,或者计数大于从索引到源集合末尾的元素数。"