我需要检查一个给定的对象是否实现了一个接口。在C#中我只会说:
if (x is IFoo) { }
使用TryCast(),然后检查Nothing的最好的方法?
尝试以下
原文链接:https://www.f2er.com/vb/256347.htmlif TypeOf x Is IFoo Then ...
if (x is IFoo) { }
使用TryCast(),然后检查Nothing的最好的方法?
if TypeOf x Is IFoo Then ...