Top "Reflection" questions

Can I obtain method parameter name using Java reflection?

If I have a class like this: public class Whatever { public void aMethod(int aParam); } is there any way to …

java reflection
Getting Class type from String

I have a String which has a name of a class say "Ex" (no .class extension). I want to assign …

java class reflection
Using PropertyInfo to find out the property type

I want to dynamically parse an object tree to do some custom validation. The validation is not important as such, …

c# .net reflection
Best way of invoking getter by reflection

I need to get the value of a field with a specific annotation, So with reflection I am able to …

java reflection getter
Using isKindOfClass with Swift

I'm trying to pick up a bit of Swift lang and I'm wondering how to convert the following Objective-C into …

ios swift reflection introspection
Open Source Alternatives to Reflector?

Just to ask if anyone knows of an open source alternative to RedGate's Reflector? I'm interested in checking out how …

.net reflection open-source reflector
Mapping object to dictionary and vice versa

Are there any elegant quick way to map object to a dictionary and vice versa? Example: IDictionary<string,object&…

c# .net dictionary reflection mapping
How do I get the calling method name and type using reflection?

Possible Duplicate: How can I find the method that called the current method? I'd like to write a method which …

c# reflection
How to get the fields in an Object via reflection?

I have an object (basically a VO) in Java and I don't know its type. I need to get values …

java reflection
How do I read all classes from a Java package in the classpath?

I need to read classes contained in a Java package. Those classes are in classpath. I need to do this …

java reflection