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