示例#1
0
 public void Open(string path)
 {
     if (this.Doc == null)
     {
         this.Doc = new MyXmlDocument(path);
     }
     this.Doc.Open(path);
 }
示例#2
0
 public DiaryDoc(string Path) : this()
 {
     this.Doc = new MyXmlDocument(Path);
 }
示例#3
0
 public DiaryDoc(string Directory, string FileName) : this()
 {
     this.Doc = new MyXmlDocument(Directory, FileName);
 }