private void butResult_Click(object sender, EventArgs e) { double result; string text = textResult.Text; if (double.TryParse(text.Replace('.', ','), out result)) { test_manager.CheckAnwser(result); } else { MessageBox.Show("Данные введенны неправильно!\nВвод числа производится через запятую! \nПример ввода: 1,75", "Ошибка!"); } }