2013-02-19 04:13:42 +03:00
|
|
|
namespace NzbDrone.Common
|
2012-02-16 09:16:57 +03:00
|
|
|
{
|
2013-04-30 03:04:14 +03:00
|
|
|
public static class StringExtension
|
2012-02-16 09:16:57 +03:00
|
|
|
{
|
|
|
|
|
2012-03-01 05:36:39 +03:00
|
|
|
public static object NullSafe(this object target)
|
2012-02-16 09:16:57 +03:00
|
|
|
{
|
|
|
|
if (target != null) return target;
|
|
|
|
return "[NULL]";
|
|
|
|
}
|
|
|
|
|
2012-03-01 05:36:39 +03:00
|
|
|
public static string NullSafe(this string target)
|
2012-02-16 09:16:57 +03:00
|
|
|
{
|
2012-03-01 05:36:39 +03:00
|
|
|
return ((object)target).NullSafe().ToString();
|
2012-02-16 09:16:57 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|