public void Dispose()
 {
     if (this.SectionEnumerator != null)
     {
         this.SectionEnumerator.Dispose();
     }
     this.SectionEnumerator = null;
     this.Owner = null;
 }
 public IniResourceEnumerator(IniResourceReader reader)
 {
     this.Owner = reader;
 }