C#對XML操作:一個處理XML檔案的類(2)

來源:互聯網
上載者:User
xml|xml C#操作XML初步(8)
第四章:通用的XML處理方法(2)
上一篇,我們提供了一個類,用來操作XML檔案,這裡提供一個應用的例子,來源於無聊時候寫的一個XML留言本中對留言資料的處理
代碼如下: using System; 
using System.IO; 
using System.Data; 
using System.Diagnostics; 
using XmlBook.Com.Sem.Tools;   //這裡就包含了上一篇提供的類 

namespace XmlBook.Component 

 /// <summary> 
 /// 著作權: Copyright by SEM IT Department 
 /// 版本: 0.0.1 
 /// 檔案: XmlBook.Component.MdlDataMange.cs 
 /// 目的: 留言資料相關的操作 
 /// 作者: 歐遠寧 @2005-04-09 
 /// 郵箱: outrace@soueast-motor.com 
 /// 修改: 
 /// </summary> 
 public class MdlDataManage 
 { 

  #region 私人成員 
  private string strID = null; 
  private string strName = null; 
  private string strSex = null; 
  private string strEmail = "no email"; 
  private string strPage = "no page"; 
  private string strQQ = "no QQ"; 
  private string strSubject = null; 
  private string strContent = null; 
  private string strReply = "no reply"; 
  private string strFilter = null; 
  #endregion 
   
  #region 公有成員 
  /// <summary> 
  /// 姓名 
  /// </summary> 
  public string StrName 
  { 
   get{return this.strName;} 
   set{this.strName = value;} 
  } 
  /// <summary> 
  /// 性別 
  /// </summary> 
  public string StrSex 
  { 
   get{return this.strSex;} 
   set{this.strSex = value;} 
  } 
  /// <summary> 
  /// 郵箱 
  /// </summary> 
  public string StrEmail 
  { 
   get{return this.strEmail;} 
   set{this.strEmail = value;} 
  } 
  /// <summary> 
  /// 首頁 
  /// </summary> 
  public string StrPage 
  { 
   get{return this.strPage;} 
   set{this.strPage = value;} 
  } 

  /// <summary> 
  /// OICQ號碼 
  /// </summary> 
  public string StrQQ 
  { 
   get{return this.strQQ;} 
   set{this.strQQ = value;} 
  } 
  /// <summary> 
  /// 主題 
  /// </summary> 
  public string StrSubject 
  { 
   get{return this.strSubject;} 
   set{this.strSubject = value;} 
  } 
  /// <summary> 
  /// 內容 
  /// </summary> 
  public string StrContent 
  { 
   get{return this.strContent;} 
   set{this.strContent = value;} 
  } 
  /// <summary> 
  /// 回複 
  /// </summary> 
  public string StrReply 
  { 
   get{return this.strReply;} 
   set{this.strReply = value;} 
  } 
  /// <summary> 
  /// ID號 
  /// </summary> 
  public string StrID 
  { 
   get{return this.s



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.