✅ How to get values of list using reflection?
Recently I wrote some logic to get values from enum:
everything works good, I can work with
but now I need to get values from
so I wanna fill Jarray with
I apologize for the question posted. I'm just tired and not thinking straight
everything works good, I can work with
IEnumerable<T> or just T where T is Enumbut now I need to get values from
IEnumerable<string> or string:List<string> str {get;set;} = new() {"a","b"};so I wanna fill Jarray with
a and b. How can I do it?I apologize for the question posted. I'm just tired and not thinking straight
