You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
432 B
15 lines
432 B
12 years ago
|
namespace NzbDrone.Common.EnsureThat
|
||
|
{
|
||
|
internal static class StringExtensions
|
||
|
{
|
||
|
internal static string Inject(this string format, params object[] formattingArgs)
|
||
|
{
|
||
|
return string.Format(format, formattingArgs);
|
||
|
}
|
||
|
|
||
|
internal static string Inject(this string format, params string[] formattingArgs)
|
||
|
{
|
||
|
return string.Format(format, formattingArgs);
|
||
|
}
|
||
|
}
|
||
|
}
|