I want to convert Minutes
as "Hours:Minutes:Seconds".
How can this achieved using c#.
I have tried this
driveHours = (totalHours.balanceDriveMinutes / 60).ToString("00") + " Hrs. "
+ (totalHours.balanceDriveMinutes % 60 ).ToString("00") + " Min." +
(totalHours.balanceDriveMinutes /3600).ToString("00") + " Sec.";
But it doesn't seem to be correct.