show/hide this revision's text 3 added 23 characters in body

Use this:

PropertyInfo[] info = obj.GetType().GetProperties(BindingFlags.Public | BindingFlags.Instance);

EDIT: Of course the correct answer is that of Jay. GetProperties() without parameters is equivalent to GetProperties(BindingFlags.Public | BindingFlags.Instance | BindingFlags.Static ). The BindingFlags.FlattenHierarchy plays no role here.

show/hide this revision's text 2 added 390 characters in body

Use the BindingFlags.FlattenHierarchy flagthis:

PropertyInfo[] info = obj.GetType().GetProperties(BindingFlags.FlattenHierarchy | BindingFlags.Public obj.GetType().GetProperties(BindingFlags.Public | BindingFlags.Instance);

EDIT: Of course the correct answer is that of Jay. GetProperties() without parameters is equivalent to GetProperties(BindingFlags.Public | BindingFlags.Instance). The BindingFlags.FlattenHierarchy plays no role here.

show/hide this revision's text 1

Use the BindingFlags.FlattenHierarchy flag:

PropertyInfo[] info = obj.GetType().GetProperties(BindingFlags.FlattenHierarchy | BindingFlags.Public | BindingFlags.Instance);