0
how i can make my application write and read commands in windows console .(:
I create my application by c#
2 Respuestas
+ 1
Good to see you back.
Use
Console.WriteLine ("Hello world");
to print any thing in the console
Use
string Name;
Name = Console.WriteLine ();
Console.WriteLine (Name);
to read input in the console.