/// Constructor for boolean results public IVA_Result(string name, bool value) : this(name) { type = IVA_ResultType.Boolean; resultVal = new IVA_ResultValue(value); }
/// Constructor for string results public IVA_Result(string name, string value) : this(name) { type = IVA_ResultType.String; resultVal = new IVA_ResultValue(value); }
/// Constructor for numeric results public IVA_Result(string name, double value) : this(name) { type = IVA_ResultType.Numeric; resultVal = new IVA_ResultValue(value); }