dotnet-api-docs
dotnet-api-docs copied to clipboard
Example please
Example please
Document Details
⚠ Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.
- ID: 5885fb65-636b-3e66-4f34-98b4e357e092
- Version Independent ID: 89a4e215-8046-0b88-8643-2c00725384e1
- Content: ParallelEnumerable.WithMergeOptions(ParallelQuery<TSource>, ParallelMergeOptions) Method (System.Linq)
- Content Source: xml/System.Linq/ParallelEnumerable.xml
- Product: dotnet-api
- GitHub Login: @dotnet-bot
- Microsoft Alias: dotnetcontent
Thanks for your feedback @avifarah. We've added this request into our backlog.
Can I help with this one?
What are you looking for in the example? This is a quick sample I created:
class Program
{
static void Main(string[] args)
{
ParallelEnumerable.Range(0, 6).WithMergeOptions(ParallelMergeOptions.AutoBuffered).ToList();
}
}
This example shows how to use it, but not what it does (which I guess will be a bit more complicated).