私は単語のリストを持っています:
List<string> listofwords;
public void list()
{
listofwords = new List<string>();
listofwords.Add("tackle");
listofwords.Add("hinder");
listofwords.Add("mentor");
}
各単語には複数のデータが含まれています。
public List<string> tackle;
public List<string> hinder;
public List<string> mentor;
public void A()
{
mentor = new List<string>();
mentor.Add("tern");
mentor.Add("tome");
mentor.Add("tone");
tackle = new List<string>();
tackle.Add("alce");
tackle.Add("cake");
tackle.Add("calk");
tackle.Add("cate");
tackle.Add("kale");
tackle.Add("lace");
hinder = new List<string>();
hinder.Add("deni");
hinder.Add("dine");
}
ボタンクリックイベントで、一覧を確認したい。リストの名前は文字列変数valに格納されます:
private void button1_Click(object sender, EventArgs e)
{
if (val.Contains(textBox1.Text )))
val.Remove(textBox1.Text);
}
valを使用してリストを確認するにはどうすればよいですか?