
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to change the Input Encoding Scheme of the C# Console?
To change the Input Encoding Scheme of the Console, use the Console.InputEncoding property.
Example
Let us see an example −
using System; using System.Collections.Generic; using System.Threading.Tasks; using System.Linq; using System.Text; class Demo { public static void Main (string[] args) { Console.BackgroundColor = ConsoleColor.Blue; Console.WriteLine("Background color changed = "+Console.BackgroundColor); Console.ForegroundColor = ConsoleColor.Yellow; Console.WriteLine("
Foreground color changed = "+Console.ForegroundColor); Console.InputEncoding = Encoding.ASCII; Console.WriteLine("Input Encoding Scheme = "+Console.InputEncoding); Console.CursorTop = 20; Console.WriteLine("
CursorTop = "+Console.CursorTop); } }
Output
This will produce the following output −
Advertisements