Functions.SwapWord 方法 | |
交换字的左右半部分。
命名空间:
XSharp.Core
程序集:
XSharp.Core (在 XSharp.Core.dll 中) 版本:2.22 GA
语法 FUNCTION SwapWord(
wSwap AS WORD
) AS WORD
public static ushort SwapWord(
ushort wSwap
)
查看代码参数
- wSwap
- 类型:UInt16
要交换字节的字。
返回值
类型:
UInt16
交换后的字。
备注
SwapWord() 交换字的右半部分和左半部分,并返回结果。
示例
此示例使用SwapWord():
1aHex := 0xAB00
2? SwapWord(aHex)
参见