public static bool ArgumentExamination(ref float argument, Limit limit) { return(argument < limit.Lower || argument > limit.Upper ? false : true); }
public NamedLimit() { Limit = new Limit(); Name = "Unnamed"; Key = InitKey(); }