1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 20:12:41 +02:00
Radarr/NzbDrone.Common/StringExtention.cs
kay.one 4da6654440 Added Auth, startup options to UI
Added caching to ConfigFileProvider,
2013-05-22 22:12:15 -07:00

25 lines
585 B
C#

using System;
using System.Linq;
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();
}
public static string FirstCharToUpper(this string input)
{
return input.First().ToString().ToUpper() + String.Join("", input.Skip(1));
}
}
}