2014-02-11 62 views
2

我正在使用反射來循環顯示當前實例的屬性,並試圖確定屬性是否爲Boolean類型。我嘗試了很多東西(typeof,GetType等),但我沒有得到它的工作。這裏是我的代碼:檢查屬性是否爲布爾類型

For Each prop As System.Reflection.PropertyInfo In Me.GetType.GetProperties() 
    If prop.PropertyType Is Boolean Then 'Not Compiling 
     ' Do Something if boolean 
    End If 
Next 
+2

嘗試'如果prop.PropertyType是的GetType(布爾)然後' – Plutonix

回答