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