Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ TryParse() [2/2]

static bool System.Net.IPAddress.TryParse ( ReadOnlySpan< char > ipSpan,
[NotNullWhen(true)] out IPAddress? address )
inlinestaticinherited

Definition at line 314 of file IPAddress.cs.

315 {
316 address = IPAddressParser.Parse(ipSpan, tryParse: true);
317 return address != null;
318 }

References System.Net.IPAddressParser.Parse().