'type'是一个变量,但像类型一样使用

时间:2018-07-05 06:05:18

标签: c# typecasting-operator

为什么我在调用方法时传递类型,为什么会抛出错误“'type'是变量,却像类型一样使用”?

class AsKewordImplementation 
    {
        internal object AsOperator (object obj, Type type) 
        {
            Type temp = obj.GetType ();
            if(temp==null)
            {
                return null;
            }
            while (true) 
            {
                if (type == temp) 
                {
                  obj=(type)obj;
                }
                temp = temp.BaseType;
                if (temp == null) 
                {
                    return null;
                }
            }
        }
    }

0 个答案:

没有答案