流操作
文章平均质量分 77
ulark
这个作者很懒,什么都没留下…
展开
-
MemStream操作
MemoryStream System.Object System.MarshalByRefObject System.IO.Stream System.IO.MemoryStream MemoryStream 类创建这样的流,该流以内存而不是磁盘或网络连接作为支持存储区。MemoryStream 封装以无符号字节数组形式存储的数据,该数组在创建 Me原创 2009-12-11 10:59:00 · 1187 阅读 · 0 评论 -
MemoryStream 的一些例子
using System;using System.Collections.Generic;using System.Text;using System.IO;namespace _5_1{ class Program { static void Main(string[] args) { Stream s = null;原创 2009-12-11 10:56:00 · 535 阅读 · 0 评论 -
BitArray 类
using System;using System.Collections;public class SamplesBitArray { public static void Main() { // Creates and initializes several BitArrays. BitArray myBA1 = new BitArray( 5 );原创 2009-12-11 11:07:00 · 646 阅读 · 0 评论