When I use the strategy wizard and enter a value in the "min" column of the user defined inputs the following code is generated by the wizard in the properties section:
public int MyInput0
{
get { return myInput0; }
set { myInput0 = Math.Max(4, value); }
}
I am curious why Math.Min is not used - since the 4 is a minimum value - not a Maximum value

Comment