Ejemplo n.º 1
0
 public ConfigReader()
 {
     this.fileName = "config";
     this.loader   = new FileLoader();
     this.getConfig();
 }
Ejemplo n.º 2
0
 public ConfigReader(string fileName, IConfFileLoader loader)
 {
     this.fileName = fileName;
     this.loader   = loader;
     this.getConfig();
 }
Ejemplo n.º 3
0
 public ConfigReader(string fileName)
 {
     this.fileName = fileName;
     this.loader   = new FileLoader();
     this.getConfig();
 }