0
I have a problem, when creating an Observablecollection I do so:
ObservableCollection<MinhaClasse> Lista = new ObservableCollection<MinhaClasse>();
So far so good. My problem is, through Reflection I read all fields, and if it is a List as in the above case, I need to create a new Observablecollection
my question is: how will I do it? how will I fill that my class via Reflection if I don’t know which class is?
ObservableCollection<????> ListaGeneric = new ObservableCollection<???>();