public static StatisticReport GetInstance() { if (singleton == null) { singleton = new StatisticReport(); } return(singleton); }
private void StatisticReport_FormClosed(object sender, FormClosedEventArgs e) { singleton = null; }