
C#
ezscript
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
c# 遍历Hashtable
[code="c#"] /* *下面是2种示例 */ Hashtable t = new Hashtable(); t.Add("key1", "value1"); t.Add("key2", "value2"); t.Add("key3", "value3"); //第一种: foreach (System.Collections.Dictio原创 2011-08-30 08:40:29 · 134 阅读 · 0 评论 -
Xml基本操作
要插入的节点出自不同的上下文:2个节点所属的XmlDocument不同。。 [code="c#"] //1 将原节点导入到当前XmlDocument //2 插入 XmlNode atom = ... //待拷贝的节点 XmlNode sendNode = draft.SelectSingleNode("send"); //目标节点 sendNode.RemoveChild(sess...原创 2011-12-22 10:48:39 · 153 阅读 · 0 评论 -
C# NPOI操作Excel
[code="C#"] using System; using System.Collections; using System.IO; using System.Data; using System.Data.OleDb; using System.Collections.Generic; using System.Linq; using System.Text; using ...原创 2012-03-31 01:27:12 · 571 阅读 · 0 评论