摘要: Main public static void Main(string[] args) { var list = new List<string>(); list.Add("1"); list.Add("Tom"); list.Add(""); list.Add("1234@sss"); var m 阅读全文
posted @ 2020-08-01 16:22 jx++ 阅读(525) 评论(0) 推荐(0) 编辑
 

2021年2月22日

摘要: var a = document.getElementById('downloader'); var csv_base = "test"; // BOM(文字化け対策) var bom = new Uint8Array([0xEF, 0xBB, 0xBF]); var blob = new Blob 阅读全文
posted @ 2021-02-22 13:54 jx++ 阅读(145) 评论(0) 推荐(0) 编辑
 

2021年1月9日

摘要: 引用jquery HTML <div id="sub-menu"> <table cellspace="3"> <tr> <td> <input type="button" class="sub-menu-btn" name="" id="" value="添加" /> </td> </tr> <t 阅读全文
posted @ 2021-01-09 19:05 jx++ 阅读(943) 评论(0) 推荐(0) 编辑
 

2020年10月24日

摘要: 使用NuGet 安装 log4net。 创建log4net.config文件。 配置log4net.config文件。 ` --> <!-- 日志默认值节点 --> <root> <!-- 默认日志对象级别 --> <!--(高) OFF > FATAL > ERROR > WARN > INFO 阅读全文
posted @ 2020-10-24 13:01 jx++ 阅读(90) 评论(0) 推荐(0) 编辑
 

2020年9月29日

摘要: 本文章从网上复制过来的,复制源找不到了。。。 ` class KeyboardHook { public event KeyEventHandler KeyDownEvent; public event KeyPressEventHandler KeyPressEvent; public event 阅读全文
posted @ 2020-09-29 14:51 jx++ 阅读(2984) 评论(2) 推荐(0) 编辑
 
摘要: var list = new List<string>() { "111111", "222222", "333333", string.Empty, "555555", string.Empty, string.Empty, string.Empty }; var newList = list?. 阅读全文
posted @ 2020-09-29 10:16 jx++ 阅读(148) 评论(0) 推荐(0) 编辑
 

2020年9月27日

摘要: res.setHeader('Content-Type', 'text/plain;charset=utf-8') 阅读全文
posted @ 2020-09-27 22:27 jx++ 阅读(421) 评论(0) 推荐(0) 编辑