-
Notifications
You must be signed in to change notification settings - Fork 23
QuantumGate::Address::TryParse
Karel Donk edited this page Dec 25, 2021
·
1 revision
Attempts to parse an address from a string.
static bool TryParse(const WChar* addr_str, Address& addr) noexcept;
static bool TryParse(const String& addr_str, Address& addr) noexcept;
Name | Description |
---|---|
addr_str |
The address in string format. |
addr |
The QuantumGate::Address object to store the parsed value in. |
Returns true
if the operation succeeded, otherwise false
. Upon successful completion the parsed address will be stored in the addr
parameter.