0
votes
0answers
46 views
Custom configuration issue (c#)
Hi everybody,
I'm woking on a project that requires to extend ConfigurationSection for every configuration object. Configuration information is stored into the database and it can be overriden by …
2
votes
5answers
52 views
GetGenericTypeDefinition returning false when looking for IEnumerable<T> in List<T>
Following this question, why does enumerable in this:
Type type = typeof(List<string>);
bool enumerable = (type.IsGenericType && type.GetGenericTypeDefinition() == …
0
votes
1answer
13 views
Portably passing arguments to PHP’s ReflectionMethod::invokeArgs by reference
Seemingly something of a misnomer, as pass by reference is deprecated in PHP 5.3... anyway, what I'm trying to do is write a unit test framework using reflection, that allows you to pass arguments to …
1
vote
6answers
92 views
get type of a generic parameter in java with reflection
Is it possible to get the type of a generic parameter?
An example:
public final class voodoo {
public static chill(List<?> aListWithTypeSpiderMan) {
// Here I'd like to get the …
0
votes
5answers
44 views
How to get the type contained in a collection through reflection
In some part of my code I am passed a collection of objects of type T. I don't know which concrete colletion I will be passed, other than it impements IEnumerable.
At run time, I need to find out …
0
votes
1answer
37 views
Add event handler dynamically having the delegate name in a string
Hi!
I need to assign an eventHandler to an object, in this way:
_Element.AddHandler(UIElement.MouseLeftButtonUpEvent, new RoutedEventHandler(Vars.Digit), true);
but, in fact, I only have a string …
0
votes
2answers
26 views
SecurityExceptions using the HTML Helpers in third-party libraries
Can someone explain this paragraph on page 258(Pro ASP.NET MVC 1.0 Chapter 6: Using the HTML Helpers)?
If you're writing a third-party
library(as opposed to a web
application) that uses the …
7
votes
13answers
268 views
Reflection. What can we achieve using it?
Hi!
I'm reading and learning about reflection in C#. It would be fine to know how can it help me in my daily work, so I want people with more experience than me tell me samples or ideas about what …
1
vote
6answers
101 views
Any solution for Class.getMethod() reflection and autoboxing?
I want to use
Class.getMethod(String name, Class... parameterTypes)
to find the method I need to invoke with the given parameters, but apparently as described in Bug 6176992 Java doesn't include …
0
votes
2answers
25 views
Get value from nested class using reflection
public class CustomProperty<T>
{
private T _value;
public CustomProperty(T val)
{
_value = val;
}
public T Value
{
get { return this._value; }
…
0
votes
3answers
44 views
Check type of primitive field
I'm trying to determine the type of a field on an object. I don't know the type of the object when it is passed to me but I need to find fields which are 'long's. It is easy enough for Longs but the …
2
votes
1answer
260 views
How do I inspect a Class in Objective-C?
Update I fixed up the code to eliminate duplication of overridden methods and track originator of property or method by implementing Mark's suggestion. Haven't tackled property types yet (will …
4
votes
6answers
58 views
Parameter converted from null to DateTime.MinValue when called using Invoke in C# 2.0
I have code a bit like this
public class MyObject
{
private bool IsValidDay(ref DateTime theDate)
{
...
}
}
MethodInfo[] methods = …
0
votes
3answers
55 views
Loading a .NET 3.5 Assembly Via Reflection in .NET 2.0
I have an interesting situation and am trying to do something that I'm not even sure is possible.
I have a .NET 2.0 project that via reflection loads an assembly, and calls a specific method on that …
1
vote
4answers
49 views
Finding and invoking a generic overloaded method
How can I find a generic overloaded method? For example, Queryable's
public static IQueryable<TResult> Select<TSource , TResult> ( this IQueryable<TSource> source , …
