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