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

    Aug 30, 2009 · A C reflection API provides access to runtime reflection metadata for C structure declarations with support for arbitrarily nested combinations of: intrinsic, set, enum, struct, …

  2. c# - Reflection. What can we achieve using it? - Stack Overflow

    Dec 13, 2009 · Generally speaking Reflection allows you access to metadata about objects. Combining Reflection with other techniques allows you to make your program more dynamic. …

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

    Nov 6, 2018 · JavaScript already has reflection features in ES5 even though they were not named reflection either by specification or by the community. Methods such as Array.isArray , …

  4. C#: Can someone explain the practicalities of reflection?

    Jan 7, 2015 · b) Using reflection you can generate classes and code on the fly, which simplifies certain programming tasks since the programmer does not have to explicitly create all the …

  5. Java introspection and reflection - Stack Overflow

    Jan 11, 2010 · Reflection (taken from oracle java tutorial) Reflection is commonly used by programs which require the ability to examine or modify the runtime behavior of applications …

  6. c# - How to get the list of properties of a class? - Stack Overflow

    Apr 10, 2009 · @Tadej what framework are you targeting? if you're using .NET core you need to ensure you have the using System.Reflection directive and the …

  7. reflection - Java: NoSuchMethodException when method clearly …

    Jul 8, 2010 · This was the issue in my case. I wasn't providing types of parameter for the method I wanted to get. My code before looked like Method method = …

  8. How to enumerate an object's properties in Python?

    Something to note from the Python docs, because dir() is supplied primarily as a convenience for use at an interactive prompt, it tries to supply an interesting set of names more than it tries to …

  9. reflection - How can I evaluate a C# expression dynamically?

    I do this in testing scenarios. I have an assembly that changes version numbers as it gets updated. I'd like my test code to be "late bound" to the assembly - to be able to load the …

  10. Java Reflection: Why is it so slow? - Stack Overflow

    Reflection-based code has low potential for JIT-based optimizations; Reflection is mostly used in connecting loosely-coupled components, i.e. in looking up concrete classes and methods, …

Refresh