About 50 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. reflection - Loading DLLs at runtime in C# - Stack Overflow

    I am trying to figure out how you could go about importing and using a .dll at runtime inside a C# application. Using Assembly.LoadFile() I have managed to get my program to load the dll (this part...

  3. How to get the list of properties of a class? - Stack Overflow

    Apr 10, 2009 · Following feedback... To get the value of static properties, pass null as the first argument to GetValue To look at non-public properties, use (for example) GetProperties(BindingFlags.Public | …

  4. c# - Set object property using reflection - Stack Overflow

    Is there a way in C# where I can use reflection to set an object property? Ex: MyObject obj = new MyObject(); obj.Name = "Value"; I want to set obj.Name with reflection. Something like: Reflection.

  5. .net - Can you use reflection to find the name of the currently ...

    Like the title says: Can reflection give you the name of the currently executing method. I'm inclined to guess not, because of the Heisenberg problem. How do you call a method that will tell you ...

  6. reflection - How to get the current product version in C# ... - Stack ...

    Quite ridiculous how two version settings that are snugly side by side in the project properties aren't even the same class internally. Heck, even the properties in the two classes aren't the same; the last …

  7. How do I use reflection to invoke a private method?

    Reflection is slow. Private members reflection breaks encapsulation principle and thus exposing your code to the following : Increase complexity of your code because it has to handle the inner behavior …

  8. reflection - C# getting its own class name - Stack Overflow

    Jan 21, 2010 · If I have a class called MyProgram, is there a way of retrieving "MyProgram" as a string?

  9. Get properties in order of declaration using reflection

    I need to get all the properties using reflection in the order in which they are declared in the class. According to MSDN the order can not be guaranteed when using GetProperties() The GetPropert...

  10. How can I get all constants of a type by reflection?

    Apr 21, 2012 · How can I get all constants of a type by reflection? Asked 13 years, 11 months ago Modified 4 years, 11 months ago Viewed 106k times