public void ToStringTests(string str, string expected)
    {
        IpAddressV4 network = (IpAddressV4)str;

        network.ToString().Should().Be(expected);
    }
示例#2
0
 public string IPv4_ToString() => _addressV4.ToString();