管道基础大数据平台系统开发-【CS】-ExportMap
1
13693261870
2023-01-01 979ba3f2d4da1a69b9ecc7c4ef1975bc7e110148
DataLoader/CS/MD5Helper.cs
@@ -15,7 +15,7 @@
        /// </summary>
        /// <param name="pathName">文件绝对路径</param>
        /// <returns>MD5校验码</returns>
        public static string getMD5Hash(string pathName)
        public static string GetMD5Hash(string pathName)
        {
            try
            {
@@ -40,7 +40,7 @@
        /// </summary>
        /// <param name="buffer">待字节数组</param>
        /// <returns>MD5校验码</returns>
        public static string getMD5Hash(byte[] buffer)
        public static string GetMD5Hash(byte[] buffer)
        {
            MD5CryptoServiceProvider oMD5Hasher = new MD5CryptoServiceProvider();
            try