new System.IO.MemoryStream(); 能自动读取内存的信息么??

解决方案 »

  1.   

    不懂何意,MemoryStream一般用于I/O操作,并不适合对内存进行操作。
      

  2.   

    这只是 分配了一个 MemoryStream对象的 引用地址
    你说的 自动读取内存 是什么意思?
      

  3.   

    The MemoryStream class creates streams that have memory as a backing store instead of a disk or a network connection. MemoryStream encapsulates data stored as an unsigned byte array that is initialized upon creation of a MemoryStream object, or the array can be created as empty. The encapsulated data is directly accessible in memory. Memory streams can reduce the need for temporary buffers and files in an application.