public void Open(string path) { if (this.Doc == null) { this.Doc = new MyXmlDocument(path); } this.Doc.Open(path); }
public DiaryDoc(string Path) : this() { this.Doc = new MyXmlDocument(Path); }
public DiaryDoc(string Directory, string FileName) : this() { this.Doc = new MyXmlDocument(Directory, FileName); }