添加List方法
This commit is contained in:
parent
3f61a327c1
commit
432cdf0045
|
@ -109,8 +109,6 @@ public static class IEnumerableExtension
|
|||
=> source.SelectMany(x => x);
|
||||
|
||||
|
||||
private static IEnumerable<T> List<T>(T t)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
private static IEnumerable<T> List<T>(params T[] list)
|
||||
=> list.ToImmutableList();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue