Type Summary

						public class MemoryStream : Stream
{
  // Constructors
     public MemoryStream ();
     public MemoryStream (byte[] buffer);
     public MemoryStream (byte[] buffer, bool writable);
     public MemoryStream (byte[] buffer, int index,
                          int count);
     public MemoryStream (byte[] buffer, int index,
                          int count, bool writable);
     public MemoryStream (byte[] buffer, int index,
                          int count, bool writable,
                          bool publiclyVisible);
     public MemoryStream (int capacity);

  // Properties
     public override bool CanRead { get; }
     public override bool CanSeek { get; }
     public override bool CanWrite { get; }
     public virtual int Capacity { set; get; }
     public override long Length { get; }
     public override long Position { set; get; }

  // Methods
     public override void Close ();
     public override ...

Get .NET Framework Standard Library Annotated Reference, Volume 1: Base Class Library and Extended Numerics Library now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.