mirror of
https://github.com/sphildreth/roadie
synced 2024-11-26 22:20:21 +00:00
24 lines
No EOL
652 B
C#
24 lines
No EOL
652 B
C#
using Roadie.Library.Utility;
|
|
using System;
|
|
|
|
namespace Roadie.Library.Extensions
|
|
{
|
|
public static class DecimalExt
|
|
{
|
|
public static int ToSecondsFromMilliseconds(this decimal? value)
|
|
{
|
|
if (value > 0)
|
|
{
|
|
var contentDurationTimeSpan = TimeSpan.FromMilliseconds((double)(value ?? 0));
|
|
return (int)contentDurationTimeSpan.TotalSeconds;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
public static TimeSpan? ToTimeSpan(this decimal? value)
|
|
{
|
|
if (!value.HasValue) return null;
|
|
return TimeSpan.FromSeconds((double)value);
|
|
}
|
|
}
|
|
} |