//ALT 1:
DateTime myTime;
if (State == State.Configure)
{
myTime = new DateTime();
}
//ALT2:
public MyIndicatorConstructor()
{
myTime = new DateTime();
}
Sorry if my search for the answere in the documentation might have been scarce.

Comment