C# Console Write(String)
Description
Console Write(String)
writes the specified string value
to the standard output stream.
Syntax
Console.Write(String)
has the following syntax.
[HostProtectionAttribute(SecurityAction.LinkDemand, UI = true)]
public static void Write(
string value
)
Parameters
Console.Write(String)
has the following parameters.
value
- The value to write.
Returns
Console.Write(String)
method returns
Example
/*from w w w . j av a2 s .c om*/
using System;
public class MainClass{
public static void Main(String[] argv){
System.Console.Write("asdf");
}
}