mirror of
https://github.com/sphildreth/roadie
synced 2024-11-25 21:50:22 +00:00
17 lines
No EOL
371 B
C#
17 lines
No EOL
371 B
C#
using System;
|
|
|
|
namespace Roadie.Library.Extensions
|
|
{
|
|
public static class TimeSpanExt
|
|
{
|
|
public static string ToDuration(this TimeSpan input)
|
|
{
|
|
if (input == default || input.TotalMilliseconds == 0)
|
|
{
|
|
return "--/--/--";
|
|
}
|
|
|
|
return input.ToString(@"ddd\.hh\:mm\:ss");
|
|
}
|
|
}
|
|
} |