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