Redzen.IO.MemoryBlockStream.Flush C# (CSharp) Method

Flush() public method

Overrides Stream.Flush so that no action is performed.
public Flush ( ) : void
return void
        public override void Flush()
        {
            // Memory based stream with nothing to flush; Do nothing.
        }