HslExtensionToHexBytes 方法 |
将16进制的字符串转化成Byte数据,将检测每2个字符转化,也就是说,中间可以是任意字符
Converts a 16-character string into byte data, which will detect every 2 characters converted, that is, the middle can be any character
命名空间:
HslCommunication
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public static byte[] ToHexBytes(
this string value
)
<ExtensionAttribute>
Public Shared Function ToHexBytes (
value As String
) As Byte()
public:
[ExtensionAttribute]
static array<unsigned char>^ ToHexBytes(
String^ value
)
[<ExtensionAttribute>]
static member ToHexBytes :
value : string -> byte[]
参数
- value
- 类型:SystemString
[缺少 "M:HslCommunication.HslExtension.ToHexBytes(System.String)" 的 <param name="value"/> 文档]
返回值
类型:
Byte转换后的字节数组
备注
在 Visual Basic 和 C# 中,这个方法可以当成为类型
String 的实例方法来调用。在采用实例方法语法调用这个方法时,请省略第一个参数。请参考
扩展方法 (Visual Basic) 或
扩展方法 (C# 编程指南) 获取更多信息。
备注 参数举例:AA 01 34 A8
示例
string str = "13 A6 15 85 5B 05 12 36 F2 27";
byte[] b1 = SoftBasic.HexStringToBytes( str );
参见