C#
文章平均质量分 87
wensibo
这个作者很懒,什么都没留下…
展开
-
C# word 拼写 语法
1.引用word库2.1 try { object oMissing = System.Reflection.Missing.Value; //创建Word对象和临时文档 Microsoft.Office.Interop.Word._Application wdA原创 2011-12-05 11:27:20 · 884 阅读 · 0 评论 -
C# 程序 win7 64位 Class not registered
转载:http://blog.csdn.net/janssenkm/article/details/4859652http://www.mysjtu.com/page/M0/S524/524168.html VS2008 在64位的系统(XP/Vista/Win7均是)中编译ArcEngine(9.3SP1)并运行时提示:没有注册类 (异常来自 HRESUL转载 2011-12-20 17:04:59 · 1638 阅读 · 0 评论 -
XML文件读写操作
if (!File.Exists(Application.StartupPath + "\\ServerDatabase.xml")) { XmlDocument myXmlDoc = new XmlDocument(); XmlNode node = myXmlDoc.Creat原创 2011-12-28 15:47:52 · 731 阅读 · 0 评论 -
写入文件
string logDirectory = BaseSystemInfo.StartupPath + @"\\Log\\Query"; if (!System.IO.Directory.Exists(logDirectory)) { System.IO.Directory.CreateDirectory(logD转载 2012-01-11 14:57:17 · 497 阅读 · 0 评论 -
C# 软件注册功能
http://www.cnblogs.com/ynbt/archive/2011/11/02/2233470.html 1 using System;2 using System.Collections.Generic;3 using System.Linq;4 using System.Text;5 using System.Management;6 7 name转载 2012-01-13 12:16:12 · 4391 阅读 · 0 评论 -
DevExpress
http://www.cnblogs.com/chenjb/archive/2009/08/06/1540091.html转载 2011-12-29 15:23:00 · 552 阅读 · 0 评论 -
C# 字段与属性区别
转载: http://www.cnblogs.com/netlyf/archive/2010/12/20/1910977.html首先从两者的声明上来看,公共字段只是类用public修饰符所公开的简单公共变量,而属性则是对字段的封装,它使用get和set访问器来控制如何设置或返回字段值。由于属性的实质是方法(get或set方法),在IL中是没有属性的概念的。所以对于开发过程中常用的赋值转载 2011-12-29 10:09:10 · 4116 阅读 · 0 评论 -
C# 操作 xml 文件
//默认密钥向量 private static byte[] Keys = { 0x12, 0x34, 0x56, 0x78, 0x90, 0xAB, 0xCD, 0xEF }; try { if (!File.Exists(Application.StartupPath + "\\Se原创 2012-02-15 15:31:33 · 576 阅读 · 0 评论