07 2020 档案
摘要:public static string Hex2Ten(string hex) { int ten = 0; for (int i = 0, j = hex.Length - 1; i < hex.Length; i++) { ten += HexChar2Value(hex.Substring(
阅读全文
摘要:用Chrome浏览器打开指定网页后,按F12,切换到Console选项卡,输入命令: document.body.contentEditable="true" 后回车即可随意编辑网页上文字。
阅读全文
摘要:制式对照表: 符号 语法 示例(2016-05-09 13:09:55:2350) 格式说明 y DateTime.Now.ToString() 2016/5/9 13:09:55 短日期 长时间 d DateTime.Now.ToString("d") 2016/5/9 短日期 D DateTim
阅读全文
摘要:Random rd = new Random(); int i = rd.Next(100,200);
阅读全文