I have created a windows form application in c# in which input from user is taken .I want to calculate time spent by user in between two submissions.How can I do that?
Using System.Threading you can use the stopwatch function. Just start the function on the first click and stop it on the second.
Using System.Threading //main etc ignored //declare Stopwatch s = new Stopwatch(); //start s.start(); //stop s.stop() //get the time s.Elapsed;