ConcurrentStack<T>.TryPeek(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.
Attempts to return an object from the top of the ConcurrentStack<T> without removing it.
public:
bool TryPeek([Runtime::InteropServices::Out] T % result);
public bool TryPeek (out T result);
member this.TryPeek : 'T -> bool
Public Function TryPeek (ByRef result As T) As Boolean
Parameters
- result
- T
When this method returns, result
contains an object from the top of the ConcurrentStack<T> or an unspecified value if the operation failed.
Returns
true
if and object was returned successfully; otherwise, false
.
Applies to
See also
שתף איתנו פעולה ב- GitHub
ניתן למצוא את המקור לתוכן זה ב- GitHub, שם ניתן גם ליצור ולסקור בעיות ולמשוך בקשות. לקבלת מידע נוסף, עיין במדריך התורמים שלנו.