About 8,830,000 results
Open links in new tab
  1. Reflection support in C - Stack Overflow

    Aug 30, 2009 · Reflection isn't supported in any existing at the moment C-standards. But still it's possible to get something very similar to this feature in Linux/MacOS/Windows if gcc/clang is …

  2. what is reflection in C#, what are the benefit. How to use it to get ...

    Jun 23, 2010 · Reflection is the ability of types to provide information about themselves. For example, an assembly can tell you what it contains, a type can tell you its methods, properties …

  3. How to dynamically create generic C# object using reflection?

    Oct 3, 2015 · I want to dynamically create TaskA or TaskB using C# reflection (Activator.CreateInstance). However I wouldn't know the type before hand, so I need to …

  4. java - What is reflection and why is it useful? - Stack Overflow

    Sep 1, 2008 · What is reflection, and why is it useful? I'm particularly interested in Java, but I assume the principles are the same in any language.

  5. What is concept of reflection in JavaScript? - Stack Overflow

    Nov 6, 2018 · Reflection means examining the structure of a program and its data. The language of the program is the programming language PL, the language in which the examination is …

  6. reflection TS - in C++23? - Stack Overflow

    Aug 12, 2021 · 29 While the Reflection TS was officially finished and published, at the same time significant progress was being made developing an alternative syntax that made use of newer …

  7. Why is the use of reflection in .NET recommended?

    Sep 22, 2009 · The main value of Reflection is that it can be used to inspect assemblies, types, and members. It's a very powerful tool for determining the contents of an unknown assembly …

  8. reflection - C# Using Activator.CreateInstance - Stack Overflow

    Mar 11, 2011 · I asked a question yesterday regarding using either reflection or Strategy Pattern for dynamically calling methods. However, since then I have decided to change the methods …

  9. Change private static final field using Java reflection

    Jul 21, 2010 · I have a class with a private static final field that, unfortunately, I need to change it at run-time. Using reflection I get this error: java.lang.IllegalAccessException: Can not set …

  10. Powershell Reflection Invoke with Parameters - Stack Overflow

    Sep 26, 2021 · I am learning reflection with PowerShell at the moment and I am struggling to find how to pass parameters to a static void function in a test DLL using reflection, been at this for …