Некорректно выводит кириллицу - C#
Формулировка задачи:
Как сделать чтоб все отображалось корректно?
И чтоб сохранялось форматирование HTML?
using System; using System.Net; namespace task2 { class Program { static void Main(string[] args) { Console.WriteLine("Enter web-site address"); string address = Console.ReadLine(); WebClient client = new WebClient(); string htmlCode = client.DownloadString(address); Console.WriteLine(htmlCode); } } }
Решение задачи: «Некорректно выводит кириллицу»
textual
Листинг программы
string address = "http://www.cyberforum.ru/csharp-beginners/thread1976195.html"; WebClient client = new WebClient(); client.Encoding = Encoding.GetEncoding("windows-1251"); string htmlCode = client.DownloadString(address); Console.WriteLine(htmlCode);
ИИ поможет Вам:
- решить любую задачу по программированию
- объяснить код
- расставить комментарии в коде
- и т.д