HslExtensionSetBoolByIndex 方法 (UInt16, Int32, Boolean) |
修改ushort数据的某个位,并且返回修改后的值,不影响原来的值。位索引为 0~15,之外的值会引发异常
Modify a bit of ushort data and return the modified value without affecting the original value. Bit index is 0~15, values outside will raise an exception
命名空间:
HslCommunication
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public static ushort SetBoolByIndex(
this ushort ushortValue,
int boolIndex,
bool value
)
<ExtensionAttribute>
Public Shared Function SetBoolByIndex (
ushortValue As UShort,
boolIndex As Integer,
value As Boolean
) As UShort
public:
[ExtensionAttribute]
static unsigned short SetBoolByIndex(
unsigned short ushortValue,
int boolIndex,
bool value
)
[<ExtensionAttribute>]
static member SetBoolByIndex :
ushortValue : uint16 *
boolIndex : int *
value : bool -> uint16
参数
- ushortValue
- 类型:SystemUInt16
等待修改的ushort值 - boolIndex
- 类型:SystemInt32
位索引,位索引为 0~15,之外的值会引发异常 - value
- 类型:SystemBoolean
bool值
返回值
类型:
UInt16修改之后的ushort值
备注
在 Visual Basic 和 C# 中,这个方法可以当成为类型
UInt16 的实例方法来调用。在采用实例方法语法调用这个方法时,请省略第一个参数。请参考
扩展方法 (Visual Basic) 或
扩展方法 (C# 编程指南) 获取更多信息。
参见