检查Windows ListBox是否包含字符串c#ignorecase?

这个问题在这里已经有了答案:

  • 不区分大小写'包含(字符串)'22个答案
  • 不区分大小写的列表搜索6个答案

  • 如果您的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?

    下一篇: c# If else statement with case insensative