Questions tagged as 'consola'

2
answers

How can I show the value of a variable on a screen within a text in c #? [duplicate]

I'm doing a desktop application and I want to show the value of a variable on the screen inside the quotes this is my code static void Main(string[] args) { int casa = 16; Console.WriteLine("variable {{casa}}");...
asked by 19.07.2018 / 14:00
4
answers

Simple calculator by batch console

In class we are doing an exercise of making a calculator in batch . I wanted to make my own and simple, instead of taking one out there. In theory it should work, but the only thing it does when I enter the data is put:    "echo is disa...
asked by 11.11.2016 / 10:22
3
answers

Problem with while loop together with if conditions

I have a problem that I think any intermediate programmer can solve. The case is that I have a while loop in which if I put in the input (for example) "add" and add the numbers the subtraction is done but then the while is executed again and it...
asked by 02.12.2016 / 21:28
1
answer

Close a recently opened process C #

I need to perform the execution of a process for a certain time, for which I start a process, and using a Timer after 10 minutes, I kill it using Kill() , I do it in the following way: using System.Diagnostics; using System.Thread...
asked by 04.01.2019 / 13:02
2
answers

Clean the console after each execution of the main while

Good friends. The fact is the following, I have a small code of the game hanged, nevertheless every time that its main function is executed it goes advancing downwards leaving the previous action above as it is typical in the terminal. I would l...
asked by 20.05.2017 / 02:42
1
answer

Compile an Eclipse Project with only the console and javac

Someone has the idea of how to compile an eclipse project, with only the command line, I have usually done it with Ant / maven or gradle, but now they have requested me at a lower level with direct commands to use it directly on server. Somet...
asked by 11.08.2016 / 20:38
1
answer

Recognition and Pause Console

Good morning. I have a console application made in C # for speech recognition with the class System.Speech.Recognition that recognizes the audio and writes it in a document called tub.txt. Here the code: using System; using System.Colle...
asked by 03.09.2017 / 18:08
1
answer

Can Selenium be run as a console, but not as a test in Azure?

The robots run as a console from selenium, what you need to know is if Azure supports SELENIUM not only as a test.     
asked by 14.06.2016 / 22:22
2
answers

Execute action every day at the same time in C #

I am working on a Console application that must perform some actions at certain times of the day (I clarify that it is not a service because I need the execution of processes) The issue is that I must start an application at a certain time an...
asked by 12.11.2018 / 17:51
2
answers

Is there an "Imports System.Console" (VB.NET) in C #?

I would like to know if there is something like a using System.Console in C # . I wanted to do something in the console to remember. When I learned to use the console, I did it with the VB.NET language. There you could import the na...
asked by 12.11.2016 / 16:05