Reflection is supported through the common language runtime, not by the Microsoft C++ compiler. Although you used this code to inspect an assembly that you defined, you can also use this code to ...
C++ And Reflection. Reflection is the ability of querying the code's own type. For example, if you define a class "Person", you can query information about it such as its data members and functions.
This is an example of static reflection in C++17 meant to demonstrate broad techniques and concepts. I used an approach similar to this in order to build a ...