Functions.C2Hex 方法 | |
Convert a string value to a hexadecimal string.
命名空间:
XSharp.Core
程序集:
XSharp.Core (在 XSharp.Core.dll 中) 版本:2.22 GA
语法 FUNCTION C2Hex(
cSource AS STRING
) AS STRING
public static string C2Hex(
string cSource
)
查看代码参数
- cSource
- 类型:String
String to convert
返回值
类型:
StringA string with the hex representation of the value
示例
? C2Hex("abcdef") // 616263646566
参见