Skip to content

Commit 91eaa72

Browse files
add ToHashList extension method
1 parent e97b07d commit 91eaa72

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
namespace WingSharpExtensions;
2+
3+
using System.Collections.Generic;
4+
5+
public static class HashListExtension
6+
{
7+
public static HashList<T> ToHashList<T>(this IEnumerable<T> enumerable) => new(enumerable);
8+
}

0 commit comments

Comments
 (0)