Meta-Programming
Writing code about code.
A common tool is reflection: the ability of a process to examine, introspect, and modify its own structure and behavior.
Writing code about code.
A common tool is reflection: the ability of a process to examine, introspect, and modify its own structure and behavior.
| Random Link ¯\_(ツ)_/¯ | ||
| Apr 8, 2025 | » | Attributes and Reflection in C# |
| Nov 28, 2022 | » | C++ Meta-Programming |
Example of reflection in C#: All types descended from the
...System.Objectbase class (the root of the type hierarchy in .NET) inherit theGetType()method.