摘要:
public class HttpHelper { /// <summary> /// 请求超时时间 /// </summary> public static int TimeOut { get; set; } = 100 * 1000; private static HttpWebRequest 阅读全文
posted @ 2021-01-08 18:34
Garson_Zhang
阅读(270)
评论(0)
推荐(0)
摘要:
public class MD5 { public static string MD5Encrypt32(string sDataIn) { if (String.IsNullOrEmpty(sDataIn)) return ""; var b = Encoding.UTF8.GetBytes(sD 阅读全文
posted @ 2021-01-08 18:33
Garson_Zhang
阅读(67)
评论(0)
推荐(0)