Something like this:

Make sure you have a Imports System.Reflection at the top.
VB Code:
  1. Dim PropInfo As PropertyInfo()
  2.         Dim pi As PropertyInfo
  3.         Dim tmpObject() As Object
  4.         PropInfo = Me.GetType.GetProperties()
  5.         For Each pi In PropInfo
  6.             If pi.DeclaringType.Name = "ObjectExample" Then
  7.                 MsgBox((pi.Name & " : " & pi.GetValue(Me, tmpObject)))
  8.             End If
  9.         Next