So far, I have successfully created the area for the user to set the parameters, but it is only allowing for an int, but I have set it to be a double.
Here is the code. Could you please take a look at it and let me know how I need to change it so that the parameters can use decimal points?
[Description("Number of Periods")]
[GridCategory("Parameters")]
public double MAEPerc
{
get {return maEnvPerc; }
set { maEnvPerc = Math.Max(1, value); }
}

Comment