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