2011-06-18 20:19:24 +03:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
namespace NzbDrone.Core
|
|
|
|
{
|
|
|
|
public static class Fluent
|
|
|
|
{
|
|
|
|
public static string WithDefault(this string actual, object defaultValue)
|
|
|
|
{
|
|
|
|
if (defaultValue == null)
|
|
|
|
throw new ArgumentNullException("defaultValue");
|
|
|
|
if (String.IsNullOrWhiteSpace(actual))
|
|
|
|
{
|
|
|
|
return defaultValue.ToString();
|
|
|
|
}
|
|
|
|
|
|
|
|
return actual;
|
|
|
|
}
|
2011-07-17 22:32:58 +03:00
|
|
|
|
|
|
|
|
|
|
|
public static double Megabytes(this int megabytes)
|
|
|
|
{
|
|
|
|
return megabytes * 1048576;
|
|
|
|
}
|
2011-06-18 20:19:24 +03:00
|
|
|
}
|
|
|
|
}
|