예제 #1
0
파일: Form1.cs 프로젝트: x4m/lr17
        private void ShowVisualization(Stopwatch sw)
        {
            var form = new VisualisationForm(_data);

            sw.Stop();
            try
            {
                File.WriteAllText(lr17speed, (_data.Count / (double)sw.ElapsedMilliseconds).ToString());
            }
            catch
            {
            }

            form.Show(this);
        }
예제 #2
0
파일: Form1.cs 프로젝트: x4m/lr17
        private void ShowVisualization(Stopwatch sw)
        {
            var form = new VisualisationForm(_data);
            sw.Stop();
            try
            {
                File.WriteAllText(lr17speed, (_data.Count/(double) sw.ElapsedMilliseconds).ToString());
            }
            catch
            {
            }

            form.Show(this);
        }