UtilConsoleSetInputBufferSize Method

Sets the buffer size of the standard input stream (std-in) acquired from the OpenStandardInput function.

So the ReadLine function can benefit from a larger buffer size.

Default buffer size is: 256

Definition

Namespace: DevCase.Core.Application.Console
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static void SetInputBufferSize(
	int bufferSize
)

Parameters

bufferSize  Int32
Minimum value is: 256

Maximum recommended value is: UInt16 (65535)

Note that the last two characters in the buffer are reserved for Cr + Lf.

Example

This is a code example.
C#
No code example is currently available or this language may not be supported.

See Also