net ToUInt16
时间: 2023-08-06 22:04:20 浏览: 141
C#中BitConverter.ToUInt16()和BitConverter.ToString()的简单使用
该函数是.NET Framework中的一个方法,用于将指定的16位有符号整数转换为无符号整数。函数的语法如下:
```
public static ushort ToUInt16(short value)
```
其中,value为要转换的16位有符号整数。函数返回一个16位无符号整数,表示转换后的值。
阅读全文