0
What is console in C#
thank to you to answer
2 Answers
+ 8
A console application, in the context ofC#, is an application that takes input and displays output at a command lineconsole with access to three basic data streams: standard input, standard output and standard error.
example
Console.Write("Y = ");
Y = Convert.ToInt32(Console.ReadLine());
+ 1
thank you đ€