예제 #1
0
파일: Module.cs 프로젝트: imintsystems/Kean
 public Module()
     : base("Settings")
 {
     this.root = new Root(this);
 }
예제 #2
0
파일: Module.cs 프로젝트: imintsystems/Kean
 protected internal override void Dispose()
 {
     if (this.editors.NotNull())
     {
         this.editors.Apply(editor => editor.Dispose());
         this.editors = null;
     }
     if (this.root.NotNull())
     {
         this.root.Dispose();
         this.root = null;
     }
     base.Dispose();
 }