Tagged Questions

Reflection is the process by which a program can observe and modify its own structure and behavior at runtime.

learn more… | top users | synonyms

214
votes
10answers
31k views

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 a tool similar to Reflector actually works. Note, if you know of a free but not ...
85
votes
7answers
27k views

C#: at design time, how can I reliably determine the type of a variable that is declared using var?

I'm working on a completion (intellisense) facility for C# in emacs. The idea is, if a user types a fragment, then asks for completion via a particular keystroke combination, the completion facility ...
77
votes
12answers
9k views

Why does C++ not have reflection?

This is a somewhat bizarre question. My objectives are to understand the language design decision and to identify the possibilities of reflection in C++. Why C++ language committee did not go ...
71
votes
14answers
76k views

C#: How do I get the path of the assembly the code is in?

Is there a way to get the path for the assembly in which the current code resides? I do not want the path of the calling assembly, just the one containing the code. Basically my unit test needs to ...
70
votes
4answers
20k views

How to use reflection to call generic Method?

What's the best way to call a generic method when the type parameter isn't known at compile time, but instead is obtained dynamically at runtime? Consider the following sample code - inside the ...
68
votes
5answers
26k views

Checking if a variable is defined in Ruby

How do you check whether a variable is defined in Ruby? Is there an "isset"-type method available?
68
votes
9answers
18k views

Getting all types that implement an interface with C# 3.5

How can I do what's in the title, with the minimum amount of code, using whatever c# 3.5 syntax (I'm guessing lambda expressions would fit, but I still don't understand them fully)? In short, I want ...
63
votes
13answers
4k views

How costly is .NET reflection?

I constantly hear how bad reflection is to use. While I generally avoid reflection and rarely find situations where it is impossible to solve my problem without it, I was wondering... For those ...
61
votes
10answers
61k views

Java how to: Generic Array creation

Due to the implementation of Java Generics you can't have code like this. How can I implement this while maintaining type safety? public class GenSet<E> { private E a[]; public ...
61
votes
8answers
36k views

C# reflection: check if a class is derived from a generic class

I have a generic class in my project with derived classes. public class GenericClass <T> : GenericInterface<T> { ...... } public class Test : GenericClass <SomeType> { } Is ...
53
votes
17answers
2k views

How could Reflection not lead to code smells?

I come from low level languages - C++ is the highest level I program in. Recently I came across Reflection, and I just cannot fathom how it could be used without code smells. The idea of inspecting ...
53
votes
7answers
7k views

Can you use reflection to find the name of the currently executing method?

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 the ...
51
votes
6answers
26k views

Get a new object instance from a Type in C#

One may not always know the Type of an object at compile-time, but may need to create an instance of the Type. How do you get a new object instance from a Type?
49
votes
5answers
2k views

Evil code confusion, how does it even compile?

I stumbled upon this code: static void Main() { typeof(string).GetField("Empty").SetValue(null, "evil");//from DailyWTF Console.WriteLine(String.Empty);//check //how does it behave? ...
49
votes
6answers
8k views

C# - Programmatic equivalent of default(Type)

I'm using reflection to loop through a Type's properties and set certain types to their default. Now, I could do a switch on the type and set the default(Type) explicitly, but I'd rather do it in one ...
45
votes
6answers
20k views

What is reflection, and why is it useful?

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(?).
41
votes
11answers
68k views

How do I invoke a java method when given the method name as a string?

If I have two variables: Object obj; String methodName = "getName"; Without knowing the class of obj, how can I call the method identified by methodName on it? The method being called has no ...
40
votes
1answer
2k views

Why is Attributes.IsDefined() missing overloads?

Inspired by an SO question. The Attribute class has several overloads for the IsDefined() method. Covered are attributes applied to Assembly, Module, MemberInfo, ParameterInfo. The MemberInfo ...
40
votes
7answers
4k views

What is the “cost” of .NET reflection?

I am currently in a programming mentality that reflection is my best friend. I use it a lot for dynamic loading of content that allows "loose implementation" rather than strict interfaces, as well as ...
40
votes
6answers
19k views

How do I use reflection to invoke a private method in C#?

There are a group of private methods in my class, and I need to call one dynamically based on an input value. Both the invoking code and the target methods are in the same instance. The code looks ...
39
votes
5answers
17k views

Can you find all classes in a package using reflection?

A beginner question about reflection, I suppose: Is it possible to find all classes or interfaces in a given package? (Quickly looking at e.g. Package, it would seem like no.)
38
votes
10answers
14k views

How do I intercept a method call in C#?

For a given class I would like to have tracing functionality i.e. I would like to log every method call (method signature and actual parameter values) and every method exit (just the method ...
36
votes
10answers
32k views

Using Case/Switch and GetType to determine the object

If you want to switch on a type of object, what is the best way to do this? Code snippet private int GetNodeType(NodeDTO node) { switch (node.GetType()) { case typeof(CasusNodeDTO): ...
36
votes
8answers
8k views

How to determine if a type implements a specific generic interface type

Assume the following type definitions: public interface IFoo<T> : IBar<T> {} public class Foo<T> : IFoo<T> {} How do I find out whether the type Foo implements the generic ...
35
votes
5answers
3k views

Why is reflection called reflection instead of introspection?

What is the origin of the term reflection? It seems more like introspection. Why isn't it called that? Introspection: A looking inward; specifically, the act or process of self-examination. ...
35
votes
8answers
16k views

Java array reflection: isArray vs. instanceof

Is there a preference or behavior difference between using: if(obj.getClass().isArray()) {} and if(obj instanceof Object[]) {} ?
34
votes
7answers
36k views

How to pass a function as a parameter in C#?

Is it possible to pass a function as a parameter in C#? I can do it using the Func or Action classes, but this forces me to declare the entire function signature at once. When I try to use Delegate, I ...
34
votes
9answers
7k views

How can I find the method that called the current method?

When logging in C#, how can I learn the name of the method that called the current method? I know all about System.Reflection.MethodBase.GetCurrentMethod(), but I want to go one step beneath this in ...
32
votes
5answers
22k views

Get property value from string using reflection in C#

I am trying implement the Data transformation using Reflection example in my code. The GetSourceValue function has a switch comparing various types, but I want to remove these types and properties ...
30
votes
4answers
2k views

Modifying final fields in Java

Let's start with a simple test case: import java.lang.reflect.Field; public class Test { private final int primitiveInt = 42; private final Integer wrappedInt = 42; private final String ...
30
votes
20answers
19k views

How can I add reflection to a C++ application?

I'd like to be able to introspect a C++ class for its name, contents (i.e. members and their types) etc. I'm talking native C++ here, not managed C++, which has reflection. I realise C++ supplies some ...
30
votes
16answers
25k views

C# eval equivalent?

I can do an eval("something()"); to execute the code dynamically in JavaScript. Is there a way for me to do the same thing in C#? What I am exactly trying to do is that I have an integer variable ...
29
votes
6answers
2k views

Why should I care about RTTI in Delphi?

I've heard a lot about the new/improved RTTI capabilities of Delphi 2010, but I must admit my ignorance...I don't understand it. I know every version of Delphi has supported RTTI...and I know that ...
29
votes
15answers
14k views

Java Reflection Performance

Does creating an object using reflection rather than calling the class constructor result in any significant performance differences?
29
votes
7answers
18k views

Find a private field with Reflection?

Given this class class Foo { // Want to find _bar with reflection [SomeAttribute] private string _bar; public string BigBar { get { return this._bar; } } } I want ...
28
votes
10answers
18k views

At runtime, find all classes in a Java application that extend a base class

I want to do something like this: List<Animal> animals = new ArrayList<Animal>(); for( Class c: list_of_all_classes_available_to_my_app() ) if (c is Anamal) animals.add( new c() ...
27
votes
2answers
589 views

What is this Type in .NET (Reflection)

What is this Type in .NET? I am using reflection to get a list of all the classes and this one turns up. What is it? where does it come from? How is the name DisplayClass1 chosen? I search the ...
26
votes
3answers
601 views

What reflection capabilities can we expect from Scala 2.10?

Scala 2.10 brings reflection other than that provided the JVM (or I guess CLR). What in particular do we have to look forward to, and how will it improve on the platform? For example, will there be ...
26
votes
5answers
6k views

Can I change a private readonly field in C# using reflection?

I am wondering, since a lot of things can be done using reflection, can I change a private readonly field after the constructor completed its execution? (note: just curiosity) public class Foo { ...
25
votes
7answers
2k views

Is it bad practice to use Reflection in Unit testing?

During the last years I always thought that in Java, Reflection is widely used during Unit testing. Since some of the variables/methods which have to be checked are private, it is somehow necessary to ...
25
votes
6answers
4k views

How slow is Reflection (C#)

I recently created an interface layer to distinguish the DataAccessProvider from our Business logic layer. With this approach we can change our choice of DataAccessProvider whenever we want by ...
25
votes
2answers
6k views

How does WCF deserialization instantiate objects without calling a constructor?

There is some magic going on with WCF deserialization. How does it instantiate an instance of the data contract type without calling its constructor? For example, consider this data contract: ...
25
votes
7answers
13k views

Getting all types in a namespace via reflection

How to get all the classes in a namespace through reflection in C#
24
votes
1answer
1k views

How does protobuf-net achieve respectable performance?

I want to understand why the protocol buffers solution for .NET developed by Marc Gravell is as fast as it is. I can understand how the original Google solution achieved its performance: it ...
24
votes
22answers
2k views

Is using reflection a design smell?

I see a lot of C#, .net questions solved here using reflection. To me, a lot of them look like bending the rules at the cost of good design (OOP). Many of the solutions look unmaintenable and ...
24
votes
8answers
8k views

C# - setting a property by reflection with a string value

I'd like to set a property of an object through reflection, with a value of type string. So, for instance, suppose I have a Ship class, with a property of Latitude, which is a double. Here's what I'd ...
24
votes
4answers
16k views

C# Assembly.Load vs Assembly.ReflectionOnlyLoad

I'm trying to understand the differences between Assembly.Load and Assembly.ReflectionOnlyLoad. In the code below I am attempting to find all of the objects in a given assembly that inherit from a ...
24
votes
3answers
11k views

Java Reflection: How to know if a Method is static?

I want to discover at run-time ONLY the static Methods of a class, how can I do this? Or, how to differentiate between static and non-static methods.
23
votes
1answer
9k views

Objective-C class -> string like: [NSArray className] -> @“NSArray”

I am trying to get a string name of a class from the class object itself. // For instance [NSArray className]; // @"NSArray" I have found object_getClassName(id obj) but that requires an instance ...
23
votes
4answers
2k views

Why is there not a `fieldof` or `methodof` operator in C#?

They could be used as follows: FieldInfo field = fieldof(string.Empty); MethodInfo method1 = methodof(int.ToString); MethodInfo method2 = methodof(int.ToString(IFormatProvider)); fieldof could be ...

1 2 3 4 5 113