mirror of
https://github.com/sphildreth/roadie
synced 2025-02-18 05:58:26 +00:00
13 lines
No EOL
323 B
C#
13 lines
No EOL
323 B
C#
using System;
|
|
|
|
namespace Roadie.Library.Extensions
|
|
{
|
|
public static class TimeSpanExt
|
|
{
|
|
public static string ToDuration(this TimeSpan input)
|
|
{
|
|
if (input == null || input.TotalMilliseconds == 0) return "--/--/--";
|
|
return input.ToString(@"ddd\.hh\:mm\:ss");
|
|
}
|
|
}
|
|
} |