C# Console WriteLine(UInt64)
Description
Console WriteLine(UInt64)
writes the text representation
of the specified 64-bit unsigned integer value, followed by the current
line terminator, to the standard output stream.
Syntax
Console.WriteLine(UInt64)
has the following syntax.
[CLSCompliantAttribute(false)]//w ww . j a va 2 s.c om
[HostProtectionAttribute(SecurityAction.LinkDemand, UI = true)]
public static void WriteLine(
ulong value
)
Parameters
Console.WriteLine(UInt64)
has the following parameters.
value
- The value to write.
Returns
Console.WriteLine(UInt64)
method returns
Example
using System;/* w w w.j a v a 2 s .c o m*/
public class MainClass{
public static void Main(string[] args) {
Console.WriteLine((UInt64)1234);
}
}