摘要:
1) 16进制字符串 a) c#内置api byte[] bytes = BitConverter.GetBytes(123); var hexStr = BitConverter.ToString(bytes); b) 实现1 ///返回低字节顺序十六进制字符串(低字节在左侧) public st 阅读全文
摘要:
function GetDayTimeInfo2() local nowUtcSec = os.time() --先计算出时区 local dateTime = os.date("!*t", nowUtcSec) --内部不加时区 local timeZoneSec = os.difftime(no 阅读全文