How can get all the objects/data member in a class thru reflection.
Assuming i understand your question correctly, if you have already
done:
MyClass myClass = new MyClass();
Then to get a list of properties in MyClass:
PropertyInfo[] propertyInfo = myClass.GetType().GetProperties();
To get a list of methods:
MethodInfo[] methodInfo = myClass.GetType().GetMethods();