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