Hello,
instead of trying to explain my question, here a simple example.
So, I'm trying to get the type used by the list. I know it's probably possible, since I'm able to see it in a string when debugging. I just don't know how to get the typeof(int).Code:List<int> list = new List<int>(); Type listType = list.GetType(); Type listItemType = listType.GetTypeMagicly(); // <-- This is what I'm trying to get.
Thanks in advance.




Reply With Quote