Beispiel #1
0
 public DepsIniParser(FileInfo filePath)
 {
     parser  = new IniParser();
     content = File.ReadAllText(filePath.ToString());
 }
Beispiel #2
0
 public DepsIniParser(string content)
 {
     parser       = new IniParser();
     this.content = content;
 }