Should I be using the variable with the uppercase or the lowercase in my OnBarUpdate() and Initialize() functions? Is there a difference?
Thanks!
#region Variables
private int timeResolution = 1;
#endregion
...
...
[Description("Time resolution")]
[GridCategory("Parameters")]
public int TimeResolution
{
get { return timeResolution; }
set { timeResolution = Math.Max(1, value); }
}

Comment