private void buttonWithCollection_Click(object sender, EventArgs e) { if (!PrepareGui()) { return; } var core = new ClassCore <System.Collections.ObjectModel.Collection <string> >( ref richTextBoxOut, checkBoxUseIncludeFolders.Checked, checkBoxCountNames.Checked, textBoxFindName.Text); PrintResults(); }
private void buttonStringBuilder_Click(object sender, EventArgs e) { if (!PrepareGui()) { return; } var core = new ClassCore <System.Text.StringBuilder>( ref richTextBoxOut, checkBoxUseIncludeFolders.Checked, checkBoxCountNames.Checked, textBoxFindName.Text); PrintResults(); }