HslExtensionSetBoolByIndex 方法 (Int32, Int32, Boolean) |
修改int数据的某个位,并且返回修改后的值,不影响原来的值。位索引为 0~31,之外的值会引发异常
Modify a bit of int 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 int SetBoolByIndex(
this int intValue,
int boolIndex,
bool value
)
<ExtensionAttribute>
Public Shared Function SetBoolByIndex (
intValue As Integer,
boolIndex As Integer,
value As Boolean
) As Integer
public:
[ExtensionAttribute]
static int SetBoolByIndex(
int intValue,
int boolIndex,
bool value
)
[<ExtensionAttribute>]
static member SetBoolByIndex :
intValue : int *
boolIndex : int *
value : bool -> int
参数
- intValue
- 类型:SystemInt32
等待修改的int值 - boolIndex
- 类型:SystemInt32
位索引,位索引为 0~31,之外的值会引发异常 - value
- 类型:SystemBoolean
bool值
返回值
类型:
Int32修改之后的int值
备注
在 Visual Basic 和 C# 中,这个方法可以当成为类型
Int32 的实例方法来调用。在采用实例方法语法调用这个方法时,请省略第一个参数。请参考
扩展方法 (Visual Basic) 或
扩展方法 (C# 编程指南) 获取更多信息。
参见