本文介绍了从不区分大小写的内容中搜索的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

(from ci in list
where ci.Subject.Contains(emailSubject)

select ci).ToList<unreademails>();
</unreademails>



我用上述代码在数据网格中搜索,但我需要从不区分大小写的位置搜索,请告诉我我该怎么做



i wort above code for search in data grid but i need to search from case Insensitive pls tell me how can i do it

推荐答案


(from ci in list
where ci.Subject.ToUpper().Contains(emailSubject.ToUpper())
select ci).ToList();



这篇关于从不区分大小写的内容中搜索的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-31 09:29