IPAddress ip = IPAddress.Parse("59.32.0.0"); byte[] bip = ip.GetAddressBytes(); uint a = BitConverter.ToUInt32(bip, 0); a ^= (uint)Math.Pow(2, 8); ip = new IPAddress(a); Console.Write(ip.ToString()); 结果:59.33.0.0 相关文章: 2021-06-26 2021-11-18 2022-12-23 2021-07-01 2022-02-03 2021-11-12 2022-12-23 2022-12-23