Esempio n. 1
0
 private void opg5Button_Click(object sender, RoutedEventArgs e)
 {
     if (!string.IsNullOrWhiteSpace(inputTextBox.Text))
     {
         textBoxRight.Text = $"Ordet {inputTextBox.Text} blev fundet {cb.CountStringOccurrences(textBoxLeft.Text, inputTextBox.Text)} gange og er blevet markeret med #>\n\n"
                             + cb.SearchAndReplace(textBoxLeft, inputTextBox.Text);
     }
 }