public bool SetArgValue <T>(T arg) { try { XML = Rc.SaveToXMLString <T>(arg); type = arg.GetType().Name; return(true); } catch { return(false); } }
public Arg SetArgValue <T>(T arg, string Name) { try { XML = Rc.SaveToXMLString <T>(arg); type = arg.GetType().Name; ArgName = Name; return(this); } catch { return(null); } }