该文被密码保护。 阅读全文
posted @ 2020-04-03 23:58 谁说程序猿很猥琐 阅读(5) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System. 阅读全文
posted @ 2020-04-03 16:07 谁说程序猿很猥琐 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 一、开篇之前,先给大家推荐一款好用的FTP工具:FTP客户端—IIs7服务器管理工具 --官网地址:http://fwqglgj.iis7.net/cp/ftp/?cmc-zc作为FTP客户端,它支持批量管理ftp站点。定时上传和定时下载,定时备份,且操作简洁。同时iis7服务器管理工具还是vnc客 阅读全文
posted @ 2020-04-03 16:05 谁说程序猿很猥琐 阅读(2256) 评论(1) 推荐(1) 编辑
摘要: 导出Excel 操作类 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using NPOI.SS.UserMode 阅读全文
posted @ 2020-04-03 16:03 谁说程序猿很猥琐 阅读(223) 评论(0) 推荐(0) 编辑
摘要: ////.NET中指针类型的使用 //.NET中指针类型的使用 public static void UseUnsafeCode() { //不安全代码修饰符 unsafe { const int count = 10; Byte[] buffer = new byte[count]; //C# 编 阅读全文
posted @ 2020-04-03 16:00 谁说程序猿很猥琐 阅读(330) 评论(0) 推荐(0) 编辑
摘要: 通过接口下载文件(服务器和客户端) 客户端: /// <summary> /// 下载文件 /// </summary> /// <param name="URL">下载文件地址</param> /// <param name="Filename">下载后的文件目录(全路径)</param> pri 阅读全文
posted @ 2020-04-03 15:58 谁说程序猿很猥琐 阅读(731) 评论(0) 推荐(0) 编辑
摘要: 目录--作者:hnZheng * 线程池以异步的方式执行一个方法 * 线程执行上下文 * 在异步线程间取消上下文的流动 * 协作式取消和超时 取消一个正在执行的线程 * System.Threading.Tasks任务的使用 * 等待任务完成并且获取结果 * 任务完成时启动新的任务 * 任务可以启动 阅读全文
posted @ 2020-04-03 15:56 谁说程序猿很猥琐 阅读(208) 评论(0) 推荐(0) 编辑