Delegate TryGet<T>
Delegate that represents a fallible attempt to get a value of a given type.
Namespace: RustyOptions
Assembly: RustyOptions.dll
Syntax
public delegate bool TryGet<T>(out T? value)
Parameters
Type | Name | Description |
---|---|---|
T | value | The value retrieved, if any. |
Returns
Type | Description |
---|---|
bool |
|
Type Parameters
Name | Description |
---|---|
T | The type of value to get. |