作者:朱尚 / 日期:2018/11/29
/ 分类:
C#
/ 阅读:2634
public string SignEncrypt(string value) { try { X509Certificate2 pc = new X509Certificate2(AppDomain.CurrentDomain.BaseDirectory + "\\qlsm123.pfx", "201811...
作者:朱尚 / 日期:2018/11/29
/ 分类:
C#
/ 阅读:3059
Dictionary<int, string> test = new Dictionary<int, string> { }; test.Add(0,"000"); test.Add(4, "444"); test.Add(2, "222"); ...
作者:朱尚 / 日期:2018/09/26
/ 分类:
C#
/ 阅读:2899
推荐一个DLL反编译工具,绿色版,亲测!链接:https://pan.baidu.com/s/1hlmZIZMw8msaH_UHqZI4RA 密码:de4i
作者:朱尚 / 日期:2018/02/22
/ 分类:
C#
/ 阅读:2103
string str = "\u4f59\u989d\u4e0d\u8db3\uff0c\u4f60\u5f53\u524d\u4f59\u989d\uff1a"; str = Regex.Unescape(str); Response.Write(str);
作者:朱尚 / 日期:2018/02/22
/ 分类:
C#
/ 阅读:6534
int xingbie = 0; string xb = xingbie == 0 ? "男" : "女";
作者:朱尚 / 日期:2017/11/21
/ 分类:
C#
/ 阅读:4750
string con = "{\"access_token\":\"bI0zm1w\",\"expires_in\":7200\"}"; Response.Write(GetJosn(con, "access_token")); public string GetJos...
作者:朱尚 / 日期:2017/11/17
/ 分类:
C#
/ 阅读:6664
string htmlContent = "第一|第二|第三";string[] sArray = htmlContent.Split(|);int count = 0;foreach (string i in sArray){ count++; if (count == sArray.Length) { Re...
作者:朱尚 / 日期:2018/10/09
/ 分类:
C#
/ 阅读:16302
Response.Write(5 / 2);//取整数 2 Response.Write(5 % 2);//取余数 1
作者:朱尚 / 日期:2017/06/30
/ 分类:
C#
/ 阅读:2366
TimeSpan span = Convert.ToDateTime("2017-06-30 19:56").Subtract(Convert.ToDateTime("2017-06-30 19:35"));Response.Write(span.TotalDays);//天Response.Write(span.TotalHours);//小时R...
作者:朱尚 / 日期:2016/07/09
/ 分类:
C#
/ 阅读:2187
Regex re = new Regex("[1-9]([0-9]{5,11})", RegexOptions.IgnoreCase); Match ma = re.Match("1599658973"); if (ma.Success) { Response.Write("手机...