具有某接口与是某类型

是某类型:

                    if (this.FindName(ControlName).GetType() == typeof(LabelIMG))
                    {
                    }

具有某接口:

                    if (this.FindName(ControlName).GetType().GetInterface("IControl",true) == typeof(IControl))
                    {
                    }

 

你可能感兴趣的:(接口)