点击或拖拽改变大小

HslExtensionSetBoolByIndex 方法

重载列表
  名称说明
公共方法静态成员SetBoolByIndex(Byte, Int32, Boolean)
设置Byte的第 boolIndex 位的bool值,可以强制为 true 或是 false, 不影响其他的位
Set the bool value of the boolIndex bit of Byte, which can be forced to true or false, without affecting other bits
公共方法静态成员SetBoolByIndex(Byte, Int32, Boolean)
设置Byte[]的第 boolIndex 位的bool值,可以强制为 true 或是 false, 不影响其他的位,如果是第 10 位,则表示第 1 个字节的第 2 位(都是从 0 地址开始算的)
Set the bool value of the boolIndex bit of Byte[], which can be forced to true or false, without affecting other bits. If it is the 10th bit, it means the second bit of the first byte (both starting from the 0 address Calculated)
公共方法静态成员SetBoolByIndex(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
公共方法静态成员SetBoolByIndex(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
公共方法静态成员SetBoolByIndex(Int64, Int32, Boolean)
修改long数据的某个位,并且返回修改后的值,不影响原来的值。位索引为 0~63,之外的值会引发异常
Modify a bit of long data and return the modified value without affecting the original value. Bit index is 0~63, values outside will raise an exception
公共方法静态成员SetBoolByIndex(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
公共方法静态成员SetBoolByIndex(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
公共方法静态成员SetBoolByIndex(UInt64, Int32, Boolean)
修改ulong数据的某个位,并且返回修改后的值,不影响原来的值。位索引为 0~63,之外的值会引发异常
Modify a bit of ulong data and return the modified value without affecting the original value. Bit index is 0~63, values outside will raise an exception
Top
参见