将IpAddress从c#转移到UINT32

时间:2013-03-09 18:05:01

标签: c# c++

在C#方面,我正在使用System.Net.IPAddress

在C ++方面我正在使用UINT32inet_addr函数的结果)

在C ++ - Cli包装器的界面中哪个更好用? 我尝试使用UINT32,但我不知道如何在C#端将System.Net.IPAddress转换为正确的UINT32

1 个答案:

答案 0 :(得分:-1)

How to convert an IPv4 address into a integer in C#? 请注意,在C ++中(就像在C#中一样)uint32实际上是unsigned int。您需要将IpAdress转换为整数。