2019-01-13 20:01:16 +00:00
|
|
|
using System;
|
2019-02-02 11:27:06 +00:00
|
|
|
using System.Linq;
|
2018-12-27 23:27:57 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using MediaBrowser.Controller.Extensions;
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Library
|
|
|
|
{
|
|
|
|
public static class NameExtensions
|
|
|
|
{
|
|
|
|
private static string RemoveDiacritics(string name)
|
|
|
|
{
|
|
|
|
if (name == null)
|
|
|
|
{
|
|
|
|
return string.Empty;
|
|
|
|
}
|
|
|
|
|
|
|
|
return name.RemoveDiacritics();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static IEnumerable<string> DistinctNames(this IEnumerable<string> names)
|
2019-02-02 11:27:06 +00:00
|
|
|
=> names.GroupBy(RemoveDiacritics, StringComparer.OrdinalIgnoreCase)
|
|
|
|
.Select(x => x.First());
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
|
|
|
}
|