随笔分类 -  编程技术

摘要:C#软件开发总结 阅读全文
posted @ 2012-11-03 17:01 太平洋的风 阅读(838) 评论(3) 推荐(1)
摘要:不好意思,直接拷贝的英语资料。It's about using object oriented programming techniques, designpatterns, Test Driven Design, Domain Driven Design and the architectureof solutions to use said technologies, which is based on OOP(s).http://www.dofactory.com/Patterns/Patterns.aspxhttp://www.dofactory.com/Framework/F 阅读全文
posted @ 2012-04-12 21:10 太平洋的风 阅读(204) 评论(0) 推荐(0)
摘要:最近项目维护过程中需要解压7z文件。大家可以通过http://www.7-zip.org/去了解这个犇B的压缩解压工具。在windwos系统的cmd里头,可以查看7z.exe的命令行参数。如下图所示:用C#代码调用例子如下:protected void Page_Load(object sender, EventArgs e) { Process process = new Process(); process.StartInfo.FileName = @"C:\Program Files\7-Zip\7z.exe"; process.StartInfo.Arguments 阅读全文
posted @ 2012-01-03 13:03 太平洋的风 阅读(1346) 评论(3) 推荐(2)
摘要:using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using System.Xml;using System.IO;using System.Xml.Linq;namespace WebApplication2{ public partial class _Default : System.Web.UI.Page { protected void Page_Load(object 阅读全文
posted @ 2011-12-19 16:29 太平洋的风 阅读(403) 评论(0) 推荐(0)