2011年10月26日 星期三

讀取Class 的property

Dim MyObj As New ClassLibrary1.TableColName
For Each p As System.Reflection.PropertyInfo In MyObj.GetType().GetProperties()
If p.CanRead Then
Response.Write("名稱=" & p.Name & "; 傳回值=" & p.GetValue(MyObj, Nothing) & "
")
End If
Next