зеркало из
1
0
Форкнуть 0
This commit is contained in:
Charlie Poole 2016-06-12 10:50:40 -07:00
Родитель b59dbedd4f
Коммит b72a73ed6b
2 изменённых файлов: 48 добавлений и 2 удалений

Просмотреть файл

@ -1,5 +1,3 @@
The MIT License (MIT)
Copyright (c) 2016 Charlie Poole
Permission is hereby granted, free of charge, to any person obtaining a copy

Просмотреть файл

@ -1,2 +1,50 @@
# NUnit.System.Linq
Partial implementation of System.Linq for use with NUnit's .NET 2.0 framework builds and by the TestEngine.
This assembly contains classes in the System.Linq namespace as well as other classes not present in .NET 2.0 but needed in order to support System.Linq. It will cause conflicts if referenced by an assembly that targets a runtime other than .NET 2.0.
## System.Linq Types Supported
* `Check`
* `Enumerable`
* `Grouping<K, T>`
* `IGrouping<TKey, TElement>`
* `ILookup<TKey, TElement>`
* `IOrderedEnumerable<TElement>`
* `Lookup<TKey, TElement>`
* `OrderedEnumerable<TElement>`
* `OrderedSequence<TElement, TKey>`
* `QuickSort<TElement>`
* `SortContext<TElement>`
* `SortDirection
* `SortSequenceContext<TElement, TKey>`
## Other Types Included
#### System
* `Action`
* `Action<T1, T2>`
* `Action<T1, T2, T3>`
* `Action<T1, T2, T3, T4>`
* `Func<TResult>`
* `Func<T, TResult>`
* `Func<T1, T2, TResult>`
* `Func<T1, T2, T3, TResult>`
* `Func<T1, T2, T3, T4, TResult>`
#### System.Collections
* `HashPrimeNumbers`
#### System.Collections.Generic
* `CollectionDebuggerView<T, U>`
* `CollectionDebuggerView<T>`
* `HashSet<T>`
* `HashSet<T>.Enumerator`
* `HashSetEqualityComparer<T>`
#### System.Runtime.CompilerServices
* `ExtensionAttribute`