C# 中如何读取出来的时间戳为 byte[] 类型的话,用以下方式转换成 16进制字符串
string tmpUfts = "0x"+ BitConverter.ToString(dataRow["MaxRowVersion"] as System.Byte[], 0).Replace("-","");
C# 中如何读取出来的时间戳为 byte[] 类型的话,用以下方式转换成 16进制字符串
string tmpUfts = "0x"+ BitConverter.ToString(dataRow["MaxRowVersion"] as System.Byte[], 0).Replace("-","");