0
votes
1answer
38 views
Adding Items to ListBox, RadioList, Combobox using reflection
Hi All,
I'm trying to add items to a listbox,combobox, radiolist using reflection. The code I have at the moment is as follows:
public static Control ConfigureControl(Control co …
0
votes
2answers
52 views
Scala: How to know if a class is an enumeration; isInstanceOf[Enumeration] doesn’t work
I'm in scala writing a serializer that saves an object (or Model) to the database (for app engine), and I need to treat some fields as special cases. For example, if the field is o …
2
votes
5answers
111 views
C# - Get number of references to object.
I'm trying to write a simple Resource Manager for the little hobby game I'm writing. One of the tasks that this resource manager needs to do is unloading unused resources. I can th …
1
vote
2answers
66 views
Is there a way to find an interface implentation based on a generic type argument?
I have a data access library that has a few classes that all implement the same interface, which has a generic type parameter:
public interface IGetByCommonStringRepository<TEn …
5
votes
10answers
229 views
Compiled dynamic language
Greetings,
I search for a programming language for which a compiler exists and that supports self modifying code. I’ve heared that Lisp supports these features, but I was wonderin …
1
vote
2answers
37 views
How to get the array type given the array member type using reflection in Java
I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding Array type. The best I could come up with is this:
Class arrayOfFooClas …
0
votes
6answers
82 views
class at runtime
Is there a way to create Java classes @ at runtime
(classes methods n variables), with using Java reflection API
0
votes
2answers
36 views
How do I get the exception to come up at the source of the exception and not the point I call Invoke?
I have written a command manager that uses reflection to make calls to various methods and it works wonderfully except that when an exception happens in one of the handlers the bre …
0
votes
2answers
52 views
Get property value dynamically
I have an object which has a huge number of properties. I'd like to get the value of each of those properties by simply looping through the properties collection of the object.
I' …
0
votes
4answers
42 views
Asynchronous runtime method invocation
I am loading some assemblies at run time and invoking methods on them using Reflections (MethodInfo.Invoke).
Now I want to make these calls asynchronous. So I am thinking of using …
1
vote
1answer
47 views
Dynamically decompose list into variables in Python
I have 2 dimensional list created at runtime (the number of entries in either dimension is unknown). For example:
long_list = [ [2, 3, 6], [3, 7, 9] ]
I want to iterate through …
1
vote
7answers
181 views
C# - Casting an ‘object’ parameter into that object’s type?
C#
Hi all,
I pass an object to a method.
I want to cast that object to its specific class so I can perform its own specific methods? How can I do that?
Move( new Cat() );
Move( …
1
vote
2answers
110 views
How do you get a C# property name as a string with reflection?
I'm looking for a way to get a property name as a string so I can have a "strongly-typed" magic string. What I need to do is something like MyClass.SomeProperty.GetName() that woul …
1
vote
2answers
53 views
[C#] Assembly instance with no types in it
How do I get Assembly reference for a .dll with no types in it?
var assembly = typeof (SomeType).Assembly; --> but without having to spacify any type?
Something like Assembly.Ge …
1
vote
4answers
68 views
Copy all values from fields in one class to another through reflection
Hi.
I have a class which is basically a copy of another class.
public class A {
int a;
String b;
}
public class CopyA {
int a;
String b;
}
What I am doing is putting v …
