gpt4 book ai didi

c++ - 在 C# 中等效的 inet_addr 函数是什么

转载 作者:搜寻专家 更新时间:2023-10-31 01:22:26 28 4
gpt4 key购买 nike

我需要知道如何使用像 inet_addr("192.168.0.2") 这样的 IP 地址;在 C++ 中这将返回 DWORD。我在 C# 中的包装器将此字段视为 Int?

任何人都可以帮助消除这种误解吗?

最佳答案

您应该使用 IPAddress 类。它会给您带来一些麻烦,因为它试图阻止您依赖 IP4 地址。 Address 成员被声明为过时的。这是解决方法:

using System;
using System.Net;

class Program {
static void Main(string[] args) {
var addr = IPAddress.Parse("192.168.0.2");
int ip4 = BitConverter.ToInt32((addr.GetAddressBytes()), 0);
Console.WriteLine("{0:X8}", ip4);
Console.ReadLine();
}
}

输出:0200A8C0

请注意,该地址采用正确的网络顺序(大端)。

关于c++ - 在 C# 中等效的 inet_addr 函数是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2850815/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com