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