C# 读取 timestamp 时间戳 值为byte[] 类型时转换为时间戳字符串

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

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