Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

ImmutableSortedSet::ToImmutableSortedSet<TSource> Method (IEnumerable<TSource>^, IComparer<TSource>^)

 

Enumerates a sequence, produces an immutable sorted set of its contents, and uses the specified comparer.

Namespace:   System.Collections.Immutable
Assembly:  System.Collections.Immutable (in System.Collections.Immutable.dll)

public:
generic<typename TSource>
[ExtensionAttribute]
static ImmutableSortedSet<TSource>^ ToImmutableSortedSet(
	IEnumerable<TSource>^ source,
	IComparer<TSource>^ comparer
)

Parameters

source
Type: System.Collections.Generic::IEnumerable<TSource>^

The sequence to enumerate.

comparer
Type: System.Collections.Generic::IComparer<TSource>^

The comparer to use for initializing and adding members to the sorted set.

Return Value

Type: System.Collections.Immutable::ImmutableSortedSet<TSource>^

An immutable sorted set that contains the items in the specified sequence.

Type Parameters

TSource

The type of the elements in the sequence.

Return to top
Show:
© 2017 Microsoft