2017-04-21 57 views

回答

2

你可以這樣做:

var objB = objA as ClassB; 
if (objB != null) 
{ 
    // objA is of type ClassB, you can use it via objB 
} 

或者,如果您正在使用C#7:

if (objA is ClassB objB) 
{ 
    // objA is of type ClassB, you can use it via objB 
} 
+0

謝謝你的迅速和有幫助的響應。很高興有你。 – Komm

相關問題