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