I'm working on a reflection project, and now I'm stuck. If I have an object of myclass that can hold …
c# reflection generic-listI want to get the type of a variable at runtime. How do I do this?
scala reflectionI have a class that uses XML and reflection to return Objects to another class. Normally these objects are sub …
java reflection privateI have a class with information about a Person that looks something like this: public class Contact { private String name; …
java reflectionIs it possible in Java to access private field str via reflection? For example to get value of this field. …
java reflectionI want to load to a new AppDomain some assembly which has a complex references tree (MyDll.dll -> …
c# .net reflection assemblies appdomainI have a class and I want to find all of its public fields (not methods). How can I do …
java reflectionIs there a preference or behavior difference between using: if(obj.getClass().isArray()) {} and if(obj instanceof Object[]) {} ?
java arrays reflectionI want to know a class's some member variable's annotations , I use BeanInfo beanInfo = Introspector.getBeanInfo(User.class) to introspect …
java reflection annotations beaninfoI try to know if a property exist in a class, I tried this : public static bool HasProperty(this object …
c# .net reflection