如何遍历我的自定义对象中的每个属性?它不是一个集合对象,但对于非集合对象有这样的东西吗?
For Each entry as String in myObject ' Do stuff here... Next
在我的对象中有字符串,整数和布尔属性。
解决方法
@H_301_9@ 通过使用反射,你可以做到。在C#中它看起来像;PropertyInfo[] propertyInfo = myobject.GetType().GetProperties();
添加了VB.Net翻译:
Dim info() As PropertyInfo = myobject.GetType().GetProperties()