TryGetValue

Gets a list element at the specified index.

bool TryGetValue(
   const int  index,     // element index
   T&         value      // a variable for writing
   );

Parameters

index

[in]  The index of the element from the list.

&value

[out]  The variable to which the specified value of the element from the list will be written.

Return Value

Returns true on successful, or false otherwise.

This website uses cookies. Learn more about our Cookies Policy.