本文介绍了将LINQ代码转换为通常代码c#的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
hi
我对linq不感兴趣
所以我不知道它是什么
如何将linq转换成通常代码c#
hiI'm not interested in the linq
So I do not know what it
how to convert linq to usually code c#
if (!Enumerable.Contains<char>((IEnumerable<char>) str1, e.KeyChar))
e.KeyChar = Convert.ToChar(0);
if (!Enumerable.Contains<char>((IEnumerable<char>) str2, e.KeyChar) && !this.CTRL && !this.ALT)
e.KeyChar = Convert.ToChar(0);
推荐答案
if (!str1.Contains(e.KeyChar.ToString()))
e.KeyChar = Convert.ToChar(0);
if (!str2.Contains(e.KeyChar.ToString()) && !this.CTRL && !this.ALT)
e.KeyChar = Convert.ToChar(0);
这篇关于将LINQ代码转换为通常代码c#的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!