Console.ReadKey(true). Назначение - C#
Формулировка задачи:
Console.ReadKey(true);
Решение задачи: «Console.ReadKey(true). Назначение»
textual
Листинг программы
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { Console.BackgroundColor = ConsoleColor.Black; Console.Clear(); Console.ForegroundColor = ConsoleColor.White; Console.WriteLine("Введите диапазон:"); Console.Write("a= "); string str_a = Console.ReadLine(); int a = Convert.ToInt32(str_a); Console.WriteLine(); Console.Write("b= "); string str_b = Console.ReadLine(); int b = Convert.ToInt32(str_b); Console.ReadKey(true); //эту клавишу у меня не отображает Console.ReadKey(); //а эту отображает Console.ReadKey(true); } } }
ИИ поможет Вам:
- решить любую задачу по программированию
- объяснить код
- расставить комментарии в коде
- и т.д