예제 #1
0
        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();
        }
예제 #2
0
        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();
        }