摘要: ``` net use \\[ip]\ipc$ [password] /user:[username] xcopy [source] [target] /D /E /Y /H /K ``` 阅读全文
posted @ 2018-11-21 14:10 iceexx 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 配置用户账户信息 新建本地仓库 执行完命令会生成 .git 子目录,所有 git 需要的数据和资源都会存放在这个目录下 关联本地仓库至 Github 创建本地 ssh key 复制远程仓库 添加及删除文件 提交文件至本地仓库 文件比对 撤销 同步远程仓库 分支 标签 查看信息 其他 删除本缓存 阅读全文
posted @ 2018-09-27 15:29 iceexx 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 1 public class DBHelper 2 { 3 public DBHelper(string conn) 4 { 5 ConnectionString = ConfigurationManager.ConnectionStrings[conn].ToString(); 6 } 7 pub 阅读全文
posted @ 2017-06-09 10:01 iceexx 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 1 public class WebPage 2 { 3 #region Property 4 /// <summary> 5 /// 页面地址 6 /// </summary> 7 public string URL { get; set; } 8 /// <summary> 9 /// 域名 1 阅读全文
posted @ 2017-06-09 09:59 iceexx 阅读(254) 评论(0) 推荐(0) 编辑
摘要: 1 /// 2 /// 图片类型枚举 3 /// 4 public enum ImageType 5 { 6 GIF = 0, 7 JPG = 1, 8 PNG = 2 9 } 10 11 /// 12 /// 图片辅助类 13 /// 14 public class ImageHelper 15 { 1... 阅读全文
posted @ 2016-08-08 16:26 iceexx 阅读(1022) 评论(0) 推荐(0) 编辑
摘要: 一、什么是VSTO? VSTO = Visual Studo Tools for Office,是.net平台下的Office开发技术。相对于传统的VBA(Visual Basic Application)开发,VSTO为中高级开发人员提供了更加强大的开发平台和语言,并部分解决了传统Office开发 阅读全文
posted @ 2016-08-05 13:33 iceexx 阅读(474) 评论(0) 推荐(0) 编辑