Esempio n. 1
0
 public ParamNode(string path) : base(path, "", false)
 {
     try
     {
         // TODO: This lacks necessary error checking.
         Param = new ParamFile(AbsolutePath);
         ParamNodeContainer.AddFile(this);
     }
     catch (System.Exception)
     {
     }
 }
Esempio n. 2
0
 public ParamNode(string path) : base(path)
 {
     Param = new ParamFile(AbsolutePath);
     ParamNodeContainer.AddFile(this);
 }