private void ShowHitListWindow(IEnumerable<SearchHit> hitList) { TextForm textForm = new TextForm(); foreach (SearchHit hit in hitList) { textForm.MainTextBox.AppendText(hit.Text + " " + hit.Hits.ToString() + Environment.NewLine); } textForm.Show(); }
private void ShowHitListWindow(ReadOnlyCollection<SearchEngine.SearchHit> hitList) { TextForm textForm = new TextForm(); foreach (SearchEngine.SearchHit hit in hitList) { textForm.MainTextBox.AppendText(hit.Text + " " + hit.Hits.ToString() + Environment.NewLine); } textForm.Show(); }