Radarr/NzbDrone.Common/StringExtention.cs

17 lines
377 B
C#
Raw Normal View History

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