/// <summary>
 /// Parses the specified <see cref="String"/> and stores its contents as the address bytes of the <see cref="IPhysicalAddress"/> returned by this method.
 /// </summary>
 /// <param name="address">A String containing the address that will be used to initialize the PhysicalAddress instance returned by this method.</param>
 /// <returns>A <see cref="IPhysicalAddress"/> instance with the specified address.</returns>
 public IPhysicalAddress Parse(string address)
 {
     return(PhysicalAddressAdapter.Parse(address));
 }
Example #2
0
 /// <inheritdoc />
 public IPhysicalAddress Parse(ReadOnlySpan <char> address)
 {
     return(PhysicalAddressAdapter.Parse(address));
 }