1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Common/StringExtension.cs

25 lines
585 B
C#
Raw Normal View History

using System;
using System.Linq;
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
{
public static object NullSafe(this object target)
2012-02-16 09:16:57 +03:00
{
if (target != null) return target;
return "[NULL]";
}
public static string NullSafe(this string target)
2012-02-16 09:16:57 +03:00
{
return ((object)target).NullSafe().ToString();
2012-02-16 09:16:57 +03:00
}
public static string FirstCharToUpper(this string input)
{
return input.First().ToString().ToUpper() + String.Join("", input.Skip(1));
}
2012-02-16 09:16:57 +03:00
}
}