C# Console OutputEncoding
Description
Console OutputEncoding
gets or sets the encoding the
console uses to write output.
Syntax
Console.OutputEncoding
has the following syntax.
public static Encoding OutputEncoding { get; set; }
Example
// w w w . ja v a2s . c o m
using System;
public class MainClass{
public static void Main(String[] argv){
System.Console.WriteLine(Console.OutputEncoding);
}
}