public static IEnumerable <PropertyReference> GetPublicInstanceProperties(object obj) { IEnumerable <PropertyInfo> properties = ReflectionUtil.GetPublicInstanceProperties(obj); return(ToPropertyReference(properties, obj)); }