public FilePlan(string CommandName, FNodeSet Parameters, FileOjbectLibrary FOL) : this(-1, Parameters, FOL) { if (!this._id_table.ContainsKey(CommandName)) throw new ArgumentException(string.Format("Command does not exist '{0}'")); this._id = this._id_table[CommandName]; }
public FilePlan(int ID, FNodeSet Parameters, FileOjbectLibrary FOL) :base() { this.Name = "FILE"; this._id = ID; this._parameters = Parameters; this._fol = FOL; }