A method that tries to get a value.
public bool TryGetValue(out object? value)
parameter | description |
---|---|
value | The value. |
A method that tries to get a value.
public bool TryGetValue<T>(out T value)
parameter | description |
---|---|
value | The value of type T. |