MyStream.Flush C# (CSharp) Method

Flush() public method

public Flush ( ) : void
return void
 public override void Flush()  { }
 public override int GetHashCode()  { return 0;}

Usage Example

コード例 #1
0
 public override void Flush()
 {
     AssertInvariants();
     if (MyStream != null)
     {
         MyStream.Flush();
     }
     AssertInvariants();
 }
All Usage Examples Of MyStream::Flush