Subtraction two time format ,
string _time_One = "08:30" ;
string _time_Two = "08:35" ;
string _timeInterval = ( DateTime.Parse(_time_One) - DateTime.Parse(_time_Two) ).Minutes.ToString();
It give me the result 5
, but I want to show likes this format 00:05
.
Kindly show me how to format it . Thanks in advance !