C# Console WriteLine(Int64)
Description
Console WriteLine(Int64)
writes the text representation
of the specified 64-bit signed integer value, followed by the current line
terminator, to the standard output stream.
Syntax
Console.WriteLine(Int64)
has the following syntax.
[HostProtectionAttribute(SecurityAction.LinkDemand, UI = true)]
public static void WriteLine(
long value
)
Parameters
Console.WriteLine(Int64)
has the following parameters.
value
- The value to write.
Returns
Console.WriteLine(Int64)
method returns
Example
using System;//from ww w . j a v a2s . c o m
public class Example
{
public static void Main()
{
Console.WriteLine((ulong)123);
}
}