mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-12 08:07:10 -07:00
17 lines
No EOL
377 B
C#
17 lines
No EOL
377 B
C#
namespace NzbDrone.Common
|
|
{
|
|
public static class StringExtension
|
|
{
|
|
|
|
public static object NullSafe(this object target)
|
|
{
|
|
if (target != null) return target;
|
|
return "[NULL]";
|
|
}
|
|
|
|
public static string NullSafe(this string target)
|
|
{
|
|
return ((object)target).NullSafe().ToString();
|
|
}
|
|
}
|
|
} |