private void Timer_Tick(object sender, EventArgs e)
{
CurrentValue.Text = current.GetTitle();
}
public MainForm()
{
InitializeComponent();
timer = new Timer();
timer.Tick += Timer_Tick;
timer.Interval = 1000;
current = new CurrentData();
StopWork.Enabled = false;
}
var a = new MyClass();
Обычно так объект класса создается.
a.Method();
Где через точку вызывается методы класса.
Ваш пример приблизительно такой.
var statisticFormula = new StatisticFormula();
statisticFormula.InverseFDistribution (Double, Int32, Int32);