Posts by João Mota • 11 points
2 posts
-
1
votes1
answer391
viewsQ: Process monitoring
I’m developing a process monitoring application, to get the running programs I’m using this class: Win32_process, but I am not able to find a method to discount idle time, for example I am only able…
-
0
votes4
answers3830
viewsA: Compare number within a numerical range
private bool VerificaIntervalo(int numero) { if(numero >= 1 && numero <= 25) { return true; } else { return false; } } Would that be?…