コード例 #1
0
        private void Button2_Click(object sender, EventArgs e)
        {
            string str = Texts_Anaysis.AllPhrasesForAllRecords(list_of_records, lft, Texts_Anaysis.Main_path + "Phrases.txt");

            str = Texts_Anaysis.AllPhrasesForAllRecords_for_CSV(list_of_records, lft, Texts_Anaysis.Main_path + "PhrasesCSV.txt");
            str = Texts_Anaysis.AllPhrasesForAllRecords_for_CSV(list_of_records, lft, Texts_Anaysis.Main_path + "PhrasesCSV.csv");
        }
コード例 #2
0
 private void Words_in_Quotes_Load(object sender, EventArgs e)
 {
     list_of_records = Texts_Anaysis.CCCL("Final List.csv");
     lft.Csv_into_this_list_of_terms(Texts_Anaysis.Main_path + "words_list.csv");
     foreach (record r in list_of_records)
     {
         string sss = "" + r.index + ". " + r.acq_full_name + " " + r.target_fullname;
         comboBox1.Items.Add(sss);
     }
 }