1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-03-04 02:38:18 +00:00
Radarr/NzbDrone.Common/StringExtention.cs

17 lines
377 B
C#
Raw Normal View History

2013-02-18 17:13:42 -08:00
namespace NzbDrone.Common
2012-02-15 22:16:57 -08:00
{
public static class StringExtention
{
public static object NullSafe(this object target)
2012-02-15 22:16:57 -08:00
{
if (target != null) return target;
return "[NULL]";
}
public static string NullSafe(this string target)
2012-02-15 22:16:57 -08:00
{
return ((object)target).NullSafe().ToString();
2012-02-15 22:16:57 -08:00
}
}
}