上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页

2013年8月11日

C#对excel的操作

摘要: 本文先描述如何用c#连接、操作excel文件。 项目中需要引入的DLL文件为Interop.Excel、Interop.Microsoft.Office.Core、Interop.Office等。 操作excel前需要定义一些excel变量: 定义操作excel的公共变量[www.cn-web.com] public Excel.Application m_objExcel = n... 阅读全文

posted @ 2013-08-11 12:04 程序猴chengxuhou.com 阅读(1318) 评论(0) 推荐(0) 编辑

c#读取xml操作

摘要: 1/定义一个XmlDocument对象xDoc 2/通过XmlDocument来load需要读取的xml文件 3/通过XmlDocument的SelectSingleNode来找到节点,并把节点转换为XmlElement 4/XmlElement 可以对节点的属性进行操作 Oberon's Legacy Corets, Eva ... 阅读全文

posted @ 2013-08-11 00:04 程序猴chengxuhou.com 阅读(3911) 评论(1) 推荐(1) 编辑

一个用 C# 实现操作 XML 文件的公共类代码

摘要: using System; using System.IO; using System.Data; using System.Xml; using System.Xml.XPath; namespace ExecuteXml { public class XmlControl { protected string strXmlFile; protect... 阅读全文

posted @ 2013-08-11 00:01 程序猴chengxuhou.com 阅读(565) 评论(0) 推荐(0) 编辑

2013年8月10日

如何使用 LINQ 执行插入、修改和删除操作

摘要: 本实例实现创建 LINQ To SQL 类对数据库进行插入、修改和删除的操作;以下是 具体步骤: 1 )建立 windows 窗体应用项目文件 2 )选择 ' 项目 \ 添加新项 ' 菜单,在类别中选择 ' 常用项 ' ,在 ' 模板 ' 视图中选择 'LINQ to sql ' 类,系统自动添加用户命名的 LINQ... 阅读全文

posted @ 2013-08-10 23:55 程序猴chengxuhou.com 阅读(975) 评论(0) 推荐(0) 编辑

C#--编程

摘要: 1 、使用 +Pen 在窗体上绘制一条水平红色直线? Graphics g; g=this.CreateGraphics(); Pen Pen1 =new Pen(color.red,8); g.DrawLine(Pen1,100,400,500,400); 2 、编写一个应用程序,输入以摄氏为单位的温度, 输出以华氏为单位的温度。摄氏转化为华氏的公式为: F... 阅读全文

posted @ 2013-08-10 23:44 程序猴chengxuhou.com 阅读(536) 评论(0) 推荐(0) 编辑

2013年7月22日

LINQ常用操作

摘要: LINQ 常用操作 包括 查询语法 与 Lambda 表达式语法方式,只是在表现风格上有所 不同 先定义一个类,便于使用 public class Student { public string id {get;set;} public double english {get;set;} public double computer {get;set;} ... 阅读全文

posted @ 2013-07-22 20:42 程序猴chengxuhou.com 阅读(412) 评论(0) 推荐(0) 编辑

2013年5月31日

C#命令模式实例代码

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 命令模式{ class Program { static void Main(string[] args) { Receiver r = new Receiver(); Command c = new ConcreteCommand(r); Invoker i = new Invoker(); ... 阅读全文

posted @ 2013-05-31 10:52 程序猴chengxuhou.com 阅读(3155) 评论(0) 推荐(0) 编辑

C#装饰者模式实例代码

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 装饰者{ class Program { static void Main(string[] args) { ConcreteComponent con = new ConcreteComponent(); ConcreteDecoratorA a = new ConcreteDecoratorA(); a.... 阅读全文

posted @ 2013-05-31 10:33 程序猴chengxuhou.com 阅读(2563) 评论(0) 推荐(1) 编辑

C#适配器模式代码

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 适配器{ class Program { static void Main(string[] args) { Dog dog = new DogAdapter(new Robot()); } public abstract class Dog { public abstract void ... 阅读全文

posted @ 2013-05-31 09:41 程序猴chengxuhou.com 阅读(416) 评论(0) 推荐(0) 编辑

vs批量删除代码中的所有空行

摘要: 使用查找替换:^:b*$\n选择正则表达式替换为空白 阅读全文

posted @ 2013-05-31 09:35 程序猴chengxuhou.com 阅读(381) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页

导航