Te sugerimos que pruebes esta resolución en un ambiente controlado antes de pasarlo a producción, un saludo.
Ejemplo 1: programación de la aplicación de la consola c sharp
int a =42;int b =119;int c = a + b;
Console.WriteLine(c);
Console.ReadKey();
Ejemplo 2: aplicación de consola C#
//This is the supreme way to make a console app with a switch.usingSystem;namespaceExampleclassProgramstaticvoidMain(string[] args)//Greats the user.
Console.WriteLine("Hello!");
Console.WriteLine();//An infinite loop for continues command reading.while(true)//Asks for input on a line starting with >>.
Console.Write(">> ");
input = Console.ReadLine();//Checks if the user wants to exit.if(input =="Close")break;//Gets the first word of the line and puts it in command.var command = input.Split(' ')[0];//sets up a switch for all the possible commandsswitch(command)case"log"://This is entered if log is submited into the Console.
Console.WriteLine("Not implemented");break;case""://Leaves the user alone. This is needed because otherwise it would//cosnider "" as the defualt and print Unknown command.break;default:
Console.WriteLine("Unknown command.");
Console.WriteLine();break;
Si te animas, tienes la habilidad dejar un post acerca de qué le añadirías a este escrito.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)