I am converting a timer indicator to NT8 and on compile getting Error CS115 on trying to override Dispose() in the following code:
public override void Dispose()
{
if (timer != null)
{
timer.Enabled = false;
timer = null;
}
base.Dispose();
}
Any idea to resolve this error is appreciated.
Many thanks.

Comment