Foxhole Atheist
Tuesday, July 26, 2016
seconds to minutes and seconds function
public
static
string
secondsToMinutes(
double
secs)
{
TimeSpan
time =
TimeSpan
.FromSeconds(secs);
return
time.ToString(
@"hh\:mm\:ss"
).Replace(
"00:00:"
,
""
).Replace(
"00:"
,
""
) ;
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment