Exemple #1
0
 internal void CheckFields()
 {
     if (this.fields == null)
     {
         this.fields = this.InitializeFields();
     }
 }
Exemple #2
0
 /// <summary>
 /// Disposes the <see cref="ModuleBase"/>.
 /// </summary>
 public override void Dispose()
 {
     if (this.methods != null)
     {
         this.methods.Dispose();
         this.methods = null;
     }
     if (this.fields != null)
     {
         this.fields.Dispose();
         this.fields = null;
     }
     this.parent = null;
 }