For instance, in my current class, there is a hashtable,
Hashtable t = GetHashable(); //get from somewhere.
var b = t["key"];
the type of b is hidden from my current class, it is unreachable, not a public class type.
but i want to get a value from b, for example b has a field call "ID", i need to get the ID from b.
is there anyway i can get it, reflection ???