管道基础大数据平台系统开发-【CS】-ExportMap
13693261870
2024-09-09 da528e999d6538a12f357b6c745974316d48c086
DataLoader/CS/MD5Helper.cs
@@ -3,8 +3,6 @@
using System.IO;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
namespace DataLoader.CS
{
@@ -15,7 +13,7 @@
        /// </summary>
        /// <param name="pathName">文件绝对路径</param>
        /// <returns>MD5校验码</returns>
        public static string getMD5Hash(string pathName)
        public static string GetMD5Hash(string pathName)
        {
            try
            {
@@ -40,7 +38,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