基本上,我写了这个扩展方法:
public static class Extensions
{
public static bool IsMaths(this Char it)
{
if (char.IsDigit(it) || char.IsControl(it)) { return true; }
foreach (char each in new char[] { '-', '+', '(', ')', '/', '*', '%', '^', '.' })
{
if (each.Equals(it)) { return true; }
}
return false;
}
}
当我试着打电话时:
else if (!Char.IsMaths(e.KeyChar)) { e.Handled = true; }
Visual Studio给出了'char' does not contain a definition for 'IsMaths'
的错误。为什么会这样?
答案 0 :(得分:12)
Visual Studio给出了'char'不包含的错误 'IsMaths'的定义。为什么会这样?
因为扩展方法适用于类型的实例,而不适用于类型本身。您正在使用静态char
方法,这就是无法实现的原因。
你想这样做:
else if (!e.KeyChar.IsMaths()) { e.Handled = true; }