1个回答
展开全部
这是使用的:
int index = listBox1.FindString("ABC");
if (index != -1)
{
var item = listBox1.Items[index] as A;
}
这是A类的定义,如果是复杂类型:
class A
{
public string Key { get; set; }
public override string ToString()
{
return Key;
}
}
这是添加到listBox中的代码,在构造函数里的:
listBox1.Items.Add(new A { Key = "ABCDEFG" });
大概就是这么用的,这个方法取得是以指定字符串开头的,也就是string.StartsWith
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询