csllbc_Console_SafeFlush() private method

private csllbc_Console_SafeFlush ( bool flushStdout ) : int
flushStdout bool
return int
Ejemplo n.º 1
0
 /// <summary>
 /// Flush all standard error buffer to console.
 /// </summary>
 public static void FlushError()
 {
     LLBCNative.csllbc_Console_SafeFlush(false);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Flush all standard output buffer to console.
 /// </summary>
 public static void Flush()
 {
     LLBCNative.csllbc_Console_SafeFlush(true);
 }