HslExtensionWriteReverse 方法 |
将UInt16数据写入到字节流,字节顺序为相反
Write UInt16 data to the byte stream, the byte order is reversed
命名空间:
HslCommunication
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public static void WriteReverse(
this MemoryStream ms,
ushort value
)
<ExtensionAttribute>
Public Shared Sub WriteReverse (
ms As MemoryStream,
value As UShort
)
public:
[ExtensionAttribute]
static void WriteReverse(
MemoryStream^ ms,
unsigned short value
)
[<ExtensionAttribute>]
static member WriteReverse :
ms : MemoryStream *
value : uint16 -> unit
参数
- ms
- 类型:System.IOMemoryStream
字节流 - value
- 类型:SystemUInt16
等待写入的值
备注
在 Visual Basic 和 C# 中,这个方法可以当成为类型
MemoryStream 的实例方法来调用。在采用实例方法语法调用这个方法时,请省略第一个参数。请参考
扩展方法 (Visual Basic) 或
扩展方法 (C# 编程指南) 获取更多信息。
参见