C# Console OpenStandardOutput(Int32)
Description
Console OpenStandardOutput(Int32)
acquires the standard
output stream, which is set to a specified buffer size.
Syntax
Console.OpenStandardOutput(Int32)
has the following syntax.
[HostProtectionAttribute(SecurityAction.LinkDemand, UI = true)]
public static Stream OpenStandardOutput(
int bufferSize
)
Parameters
Console.OpenStandardOutput(Int32)
has the following parameters.
bufferSize
- The internal stream buffer size.
Returns
Console.OpenStandardOutput(Int32)
method returns The standard output stream.
Example
// w w w .java2s. co m
using System;
public class Example
{
public static void Main()
{
Console.OpenStandardOutput(100);
}
}