1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-31 11:24:23 +02:00
Sonarr/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
}
}
}