笨小孩做开发

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2013年3月21日

摘要: using System;using System.Data;using System.IO;using System.Xml;namespace DotNet.Utilities{ public class XMLProcess { #region 构造函数 public XMLProcess() { } public XMLProcess(string strPath) { this._XMLPath = strPath; } #endregion #region 公有属性 private string _XMLPath; public string XMLPath { get { ret 阅读全文
posted @ 2013-03-21 15:42 笨小孩做开发 阅读(186) 评论(0) 推荐(0) 编辑

摘要: using System.Xml;using System.Data;namespace DotNet.Utilities{ /// <summary> /// Xml的操作公共类 /// </summary> public class XmlHelper { #region 字段定义 /// <summary> /// XML文件的物理路径 /// </summary> private string _filePath = string.Empty; /// <summary> /// Xml文档 /// </summary& 阅读全文
posted @ 2013-03-21 15:41 笨小孩做开发 阅读(237) 评论(0) 推荐(0) 编辑