C# 读取 timestamp 时间戳 值为byte[] 类型时,需要转换成 16进制的字符串 和 数据库中的时间戳值进行比对

C# 中如何读取出来的时间戳为 byte[] 类型的话,用以下方式转换成 16进制字符串

string tmpUfts = "0x"+ BitConverter.ToString(dataRow["ufts"] as System.Byte[], 0).Replace("-","");

以下为SQL中的转换

select  cast(ufts as varbinary(8)) as ufts16, * from a_ufts

  where ufts16 = 0x0000000012CE0DE7

你可能感兴趣的:(Timestamp)