how can i write non-english text in console screen

seco

Well-known member
Joined
Mar 4, 2007
Messages
66
Programming Experience
Beginner
hi

how can i write non-english text in console screen and appears correctly

thanks in advance.
 
Console.InputEncoding is the encoding used to interpret what has been written in console window when you use the Console.Read... methods. Console.OutputEncoding is the encoding used to display output from the Console.Write... methods and what user types (before Console.Reads it). Both is of type System.Text.Encoding.
 
Back
Top