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<T>::TryGetValue Method (T, T%)

 

Searches the set for a given value and returns the equal value it finds, if any.

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

public:
virtual bool TryGetValue(
	T equalValue,
	[OutAttribute] T% actualValue
) sealed

Parameters

equalValue
Type: T

The value to search for.

actualValue
Type: T%

The value from the set that the search found, or the original value if the search yielded no match.

Return Value

Type: System::Boolean

A value indicating whether the search was successful.

This can be useful when you want to reuse a previously stored reference instead of a newly constructed one (so that more sharing of references can occur) or to look up a value that has more complete data than the value you currently have, although their comparer functions indicate they are equal.

NuGet package: System.Collections.Immutable (about immutable collections and how to install)

Return to top
Show:
© 2017 Microsoft