documentation for the keyword "is"表示:
is运算符仅考虑引用转换,装箱 转化和拆箱转化。其他转换,例如 用户定义的转换,不予考虑。
在实践中意味着什么? 用它来检查结构是否是某种类型是错误的吗? 例如,
public struct Point2D
{
public int X;
public int Y;
...
public override bool Equals(Object value)
{
if (value != null && value is Point2D) // or if (value != null && GetType() == value.GetType())
{
Point2D right = (Point2D)value;
return (X == right.X && Y == right.Y);
}
else return false;
}
...
}