c# 计算文件的 md5 编码
using (FileStream fs = File.OpenRead(path)) { using (var crypto = MD5.Create()) { var md5Hash = crypto.ComputeHash(fs); return md5Hash; } }
桂棹兮兰桨,击空明兮溯流光。
using (FileStream fs = File.OpenRead(path)) { using (var crypto = MD5.Create()) { var md5Hash = crypto.ComputeHash(fs); return md5Hash; } }