how do you find the difference in time using two methords. and how to call subtract two methords using TimeSpan.
static void Main(string[] args)
{
int baba;
var stopWatch = new StopWatch();
Console.WriteLine("Please enter in any value to get the start time");
string ti = Console.ReadLine();
baba = Convert.ToInt32(ti);
Console.WriteLine(baba);
stopWatch.Start();
Console.WriteLine(Console.Read());
if(ti != null)
{
stopWatch.Stop();
Console.WriteLine(Console.Read());
}
}