Exemplo n.º 1
0
 private void sampleCompareButton_Click(object sender, EventArgs e)
 {
     if (Comparator != null)
     {
         int difference = Comparator.CompareWithSample(CurrentResults);
         MessageBox.Show(owner: this, caption: "Результат порівняння з еталоном", text: "Модульна різниця: " + difference);
     }
     else
     {
         MessageBox.Show(owner: this, caption: "Помилка виконання", text: "Еталон не знайдено");
     }
 }