C# Console WriteLine(Int32)
Description
Console WriteLine(Int32)
writes the text representation
of the specified 32-bit signed integer value, followed by the current line
terminator, to the standard output stream.
Syntax
Console.WriteLine(Int32)
has the following syntax.
[HostProtectionAttribute(SecurityAction.LinkDemand, UI = true)]
public static void WriteLine(
int value
)
Parameters
Console.WriteLine(Int32)
has the following parameters.
value
- The value to write.
Returns
Console.WriteLine(Int32)
method returns
Example
using System;//from w w w.j av a2 s .c om
public class Example
{
public static void Main()
{
Console.WriteLine((Int32)123);
}
}