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

◆ TryParse() [2/2]

static bool System.Net.NetworkInformation.PhysicalAddress.TryParse ( string? address,
[NotNullWhen(true)] out PhysicalAddress? value )
inlinestatic

Definition at line 102 of file PhysicalAddress.cs.

103 {
104 if (address == null)
105 {
106 value = None;
107 return true;
108 }
109 return TryParse(address.AsSpan(), out value);
110 }
static bool TryParse(string? address, [NotNullWhen(true)] out PhysicalAddress? value)

References System.Net.NetworkInformation.PhysicalAddress.None, System.Net.NetworkInformation.PhysicalAddress.TryParse(), and System.value.

Referenced by System.Net.NetworkInformation.PhysicalAddress.Parse(), and System.Net.NetworkInformation.PhysicalAddress.TryParse().