检查Windows ListBox是否包含字符串c#ignorecase?
这个问题在这里已经有了答案:
如果您的lstFieldData只包含大写字母或小写字母,则可以使用.ToUpper()或.ToLower()。
lstFieldData
A
B
C
D
if (!lstFieldData.Items.Contains(ItemValue.ToUpper()))
MessageBox.Show(ItemValue + "Item not found.");
lstFieldData
a
b
c
d
if (!lstFieldData.Items.Contains(ItemValue.ToLower()))
MessageBox.Show(ItemValue + "Item not found.");
if (strCompare.Equals("testcompare", StringComparison.InvariantCultureIgnoreCase))
{
///
}
尝试这个
链接地址: http://www.djcxy.com/p/13091.html上一篇: Check if a Windows ListBox contains a string c# ignorecase?