| 
	
		ToFrozenDictionary<TSource,TKey>(IEnumerable<TSource>, Func<TSource,TKey>, IEqualityComparer<TKey>)
	
 | 
	
		 Creates a FrozenDictionary<TKey,TValue> from an IEnumerable<T> according to specified key selector function. 
	 | 
        	
        	
	| 
	
		ToFrozenDictionary<TSource,TKey,TElement>(IEnumerable<TSource>, Func<TSource,TKey>, Func<TSource,TElement>, IEqualityComparer<TKey>)
	
 | 
	
		 Creates a FrozenDictionary<TKey,TValue> from an IEnumerable<T> according to specified key selector and element selector functions. 
	 | 
        	
        	
	| 
	
		ToFrozenSet<T>(IEnumerable<T>, IEqualityComparer<T>)
	
 | 
	
		 Creates a FrozenSet<T> with the specified values. 
	 | 
        	
        	
	| 
	
		ToImmutableArray<TSource>(IEnumerable<TSource>)
	
 | 
	
		 Creates an immutable array from the specified collection. 
	 | 
        	
        	
	| 
	
		ToImmutableDictionary<TSource,TKey>(IEnumerable<TSource>, Func<TSource,TKey>, IEqualityComparer<TKey>)
	
 | 
	
		 Constructs an immutable dictionary based on some transformation of a sequence. 
	 | 
        	
        	
	| 
	
		ToImmutableDictionary<TSource,TKey>(IEnumerable<TSource>, Func<TSource,TKey>)
	
 | 
	
		 Constructs an immutable dictionary from an existing collection of elements, applying a transformation function to the source keys. 
	 | 
        	
        	
	| 
	
		ToImmutableDictionary<TSource,TKey,TValue>(IEnumerable<TSource>,
 Func<TSource,TKey>, Func<TSource,TValue>, IEqualityComparer<TKey>,
 IEqualityComparer<TValue>)
	
 | 
	
		 Enumerates and transforms a sequence, and produces an immutable dictionary of its contents by using the specified key and value comparers. 
	 | 
        	
        	
	| 
	
		ToImmutableDictionary<TSource,TKey,TValue>(IEnumerable<TSource>, Func<TSource,TKey>, Func<TSource,TValue>, IEqualityComparer<TKey>)
	
 | 
	
		 Enumerates and transforms a sequence, and produces an immutable dictionary of its contents by using the specified key comparer. 
	 | 
        	
        	
	| 
	
		ToImmutableDictionary<TSource,TKey,TValue>(IEnumerable<TSource>, Func<TSource,TKey>, Func<TSource,TValue>)
	
 | 
	
		 Enumerates and transforms a sequence, and produces an immutable dictionary of its contents. 
	 | 
        	
        	
	| 
	
		ToImmutableHashSet<TSource>(IEnumerable<TSource>, IEqualityComparer<TSource>)
	
 | 
	
		 Enumerates a sequence, produces an immutable hash set of its contents, and uses the specified equality comparer for the set type. 
	 | 
        	
        	
	| 
	
		ToImmutableHashSet<TSource>(IEnumerable<TSource>)
	
 | 
	
		 Enumerates a sequence and produces an immutable hash set of its contents. 
	 | 
        	
        	
	| 
	
		ToImmutableList<TSource>(IEnumerable<TSource>)
	
 | 
	
		 Enumerates a sequence and produces an immutable list of its contents. 
	 | 
        	
        	
	| 
	
		ToImmutableSortedDictionary<TSource,TKey,TValue>(IEnumerable<TSource>,
 Func<TSource,TKey>, Func<TSource,TValue>, IComparer<TKey>, IEqualityComparer<TValue>)
	
 | 
	
		 Enumerates and transforms a sequence, and produces an immutable sorted dictionary of its contents by using the specified key and value comparers. 
	 | 
        	
        	
	| 
	
		ToImmutableSortedDictionary<TSource,TKey,TValue>(IEnumerable<TSource>, Func<TSource,TKey>, Func<TSource,TValue>, IComparer<TKey>)
	
 | 
	
		 Enumerates and transforms a sequence, and produces an immutable sorted dictionary of its contents by using the specified key comparer. 
	 | 
        	
        	
	| 
	
		ToImmutableSortedDictionary<TSource,TKey,TValue>(IEnumerable<TSource>, Func<TSource,TKey>, Func<TSource,TValue>)
	
 | 
	
		 Enumerates and transforms a sequence, and produces an immutable sorted dictionary of its contents. 
	 | 
        	
        	
	| 
	
		ToImmutableSortedSet<TSource>(IEnumerable<TSource>, IComparer<TSource>)
	
 | 
	
		 Enumerates a sequence, produces an immutable sorted set of its contents, and uses the specified comparer. 
	 | 
        	
        	
	| 
	
		ToImmutableSortedSet<TSource>(IEnumerable<TSource>)
	
 | 
	
		 Enumerates a sequence and produces an immutable sorted set of its contents. 
	 | 
        	
        	
	| 
	
		ToAsyncEnumerable<TSource>(IEnumerable<TSource>)
	
 | 
	
		 Creates a new IAsyncEnumerable<T> that iterates through source. 
	 |