ExampleClass.TryGetValue method (1 of 2)

A method that tries to get a value.

public bool TryGetValue(out object? value)
parameter description
value The value.

See Also


ExampleClass.TryGetValue<T> method (2 of 2)

A method that tries to get a value.

public bool TryGetValue<T>(out T value)
parameter description
value The value of type T.

See Also