Renaming ToHashSet method to avoid collision

This commit is contained in:
Chris Cameron
2018-01-09 11:05:45 -05:00
parent 46c9cb0cf0
commit e377f7993b
4 changed files with 5 additions and 5 deletions

View File

@@ -496,7 +496,7 @@ namespace ICD.Common.Utils.Extensions
/// <typeparam name="T"></typeparam>
/// <param name="extends"></param>
/// <returns></returns>
public static IcdHashSet<T> ToHashSet<T>(this IEnumerable<T> extends)
public static IcdHashSet<T> ToIcdHashSet<T>(this IEnumerable<T> extends)
{
if (extends == null)
throw new ArgumentNullException("extends");