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