2013-02-17 19:19:38 +00:00
|
|
|
|
|
|
|
|
|
using System.IO;
|
2012-02-16 06:16:57 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Common
|
|
|
|
|
{
|
|
|
|
|
public static class StringExtention
|
|
|
|
|
{
|
|
|
|
|
|
2012-03-01 02:36:39 +00:00
|
|
|
|
public static object NullSafe(this object target)
|
2012-02-16 06:16:57 +00:00
|
|
|
|
{
|
|
|
|
|
if (target != null) return target;
|
|
|
|
|
return "[NULL]";
|
|
|
|
|
}
|
|
|
|
|
|
2012-03-01 02:36:39 +00:00
|
|
|
|
public static string NullSafe(this string target)
|
2012-02-16 06:16:57 +00:00
|
|
|
|
{
|
2012-03-01 02:36:39 +00:00
|
|
|
|
return ((object)target).NullSafe().ToString();
|
2012-02-16 06:16:57 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|