閱讀英文版本 編輯

分享方式:


HashSet<T>.TryGetValue(T, T) Method

Definition

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

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

C#
public bool TryGetValue(T equalValue, out T actualValue);

Parameters

equalValue
T

The value to search for.

actualValue
T

The value from the set that the search found, or the default value of T when the search yielded no match.

Returns

A value indicating whether the search was successful.

Remarks

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.

Applies to

產品 版本
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 4.7.2, 4.8, 4.8.1
.NET Standard 2.1