mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 10:58:58 -07:00
29 lines
742 B
C#
29 lines
742 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace MediaBrowser.Model.Extensions
|
|
{
|
|
public static class ListHelper
|
|
{
|
|
public static bool ContainsIgnoreCase(List<string> list, string value)
|
|
{
|
|
if (value == null)
|
|
{
|
|
throw new ArgumentNullException("value");
|
|
}
|
|
|
|
return list.Contains(value, StringComparer.OrdinalIgnoreCase);
|
|
}
|
|
public static bool ContainsIgnoreCase(string[] list, string value)
|
|
{
|
|
if (value == null)
|
|
{
|
|
throw new ArgumentNullException("value");
|
|
}
|
|
|
|
return list.Contains(value, StringComparer.OrdinalIgnoreCase);
|
|
}
|
|
}
|
|
}
|