29 lines
660 B
C#
29 lines
660 B
C#
#pragma warning disable CS1591
|
|
#pragma warning disable SA1600
|
|
|
|
using System;
|
|
|
|
namespace MediaBrowser.Model.Extensions
|
|
{
|
|
// TODO: @bond remove
|
|
public static class ListHelper
|
|
{
|
|
public static bool ContainsIgnoreCase(string[] list, string value)
|
|
{
|
|
if (value == null)
|
|
{
|
|
throw new ArgumentNullException(nameof(value));
|
|
}
|
|
|
|
foreach (var item in list)
|
|
{
|
|
if (string.Equals(item, value, StringComparison.OrdinalIgnoreCase))
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
}
|