mscorlib(4.0.0.0) API with additions
ParallelMergeOptions.cs
1 namespace System.Linq
2 {
4  [global::__DynamicallyInvokable]
5  public enum ParallelMergeOptions
6  {
8  [global::__DynamicallyInvokable]
9  Default,
11  [global::__DynamicallyInvokable]
14  [global::__DynamicallyInvokable]
17  [global::__DynamicallyInvokable]
19  }
20 }
ParallelMergeOptions
Specifies the preferred type of output merge to use in a query. In other words, it indicates how PLIN...
Use a merge with output buffers of a size chosen by the system. Results will accumulate into an outpu...
Use a merge without output buffers. As soon as result elements have been computed,...
Use a merge with full output buffers. The system will accumulate all of the results before making any...
The default setting for this enumeration, which is currently F:System.GCCollectionMode....