Skip to content

QuantumGate::Address::TryParse

Karel Donk edited this page Dec 25, 2021 · 1 revision

Attempts to parse an address from a string.

Signature

static bool TryParse(const WChar* addr_str, Address& addr) noexcept;
static bool TryParse(const String& addr_str, Address& addr) noexcept;

Parameters

Name Description
addr_str The address in string format.
addr The QuantumGate::Address object to store the parsed value in.

Return values

Returns true if the operation succeeded, otherwise false. Upon successful completion the parsed address will be stored in the addr parameter.

Clone this wiki locally