About 107,000 results
Open links in new tab
  1. 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.

  2. vba - Micro Focus / Reflection Workspace Attachmate ... - Stack Overflow

    Jan 28, 2020 · I have a macro that runs 14 file transfers with Relection Workspace connecting to AS400 machines. I automated the macro with Visual Basic to run when an Outlook reminder kicks off. It has …

  3. spring - The GRPC services exposed are not showing up in server ...

    Feb 23, 2023 · } } } The grpc services defined are not getting exposed in the server relection. I tried all the possible solutions, but could not find the issue. I used postman for grpc calls, but the methods …

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

    Jun 23, 2010 · Reflection lets your code call methods and properties that you didn't know about when the code was compiled. One of the built in classes that uses this is the XmlSerializer. You can pass it …

  5. 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 static final

  6. Why do we need to register reflection service on gRPC server

    Jan 2, 2017 · server-based-reflection is something that you will not need to build your day-to-day gRPC APIs. This is a special instruction which exposes all the publicly accessible gRPC services on a …

  7. In C#, Is Expression API better than Reflection - Stack Overflow

    Jan 26, 2011 · Nowadays, I'm exploring C# Expression APIs. So I could use some help understanding how it works, including the difference between Expression and Reflection. I also want to understand …

  8. C# Reflection and Getting Properties - Stack Overflow

    May 4, 2010 · Not quite sure what you mean. Are there different classes that may inherit from People and you want to get those properties, or do you simply wish to get the various values of the items …

  9. c# - How slow is Reflection - Stack Overflow

    Feb 2, 2016 · Edit: while the point about relative performance remains, and while the most important thing, "measure it", remains, I should clarify some of the above. Sometimes... it does matter. …

  10. How can I add reflection to a C++ application? - Stack Overflow

    Sep 3, 2008 · The information you can get back from RTTI isn't enough to do most of the things you'd actually want reflection for though. You can't iterate over the member functions of a class for example.