为什么IPEndPoint将Int64和Int32作为参数?

时间:2012-02-09 00:53:22

标签: c# .net

为什么不选择使用UInt32(用于IP)和UInt16(用于端口)?

1 个答案:

答案 0 :(得分:7)

无符号整数不是CLS compliant。因此,许多语言不支持它们,并且尽可能避免在.NET基类库(BCL)中使用它们。

另请参阅:Why are unsigned int's not CLS compliant?