mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
4da6654440
Added caching to ConfigFileProvider,
25 lines
585 B
C#
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));
|
|
}
|
|
}
|
|
} |