0

I am here again to find some help.
I want to find a way to find child of come class for example if we double click on asRSap we have children of this class, in other way the inheritance image here

I think I have to use treeview. I do not necessarily need the answer but a way to find because i am very lost thank you

miewer
  • 25
  • 5

1 Answers1

1

I think reflection is the word you're looking for. There is a lot of documentation to be found on the web, like this SO article for instance. Using reflection, you can inspect your code in runtime. Perhaps with some recursive functions you can navigate all the way through your class hierarchy and find what you're looking for.

Community
  • 1
  • 1
hbulens
  • 1,872
  • 3
  • 24
  • 45