Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
589 views

Passing a lambda to a secondary AppDomain as a stream of IL and assembling it back using DynamicMethod

Is it possible to pass a lambda expression to a secondary AppDomain as a stream of IL bytes and then assemble it back there using DynamicMethod so it can be called? I'm not too sure this is the right ...
6
votes
1answer
518 views

Is it possible to invoke internal method from a dynamic method in .NET?

I am trying to invoke an internal method from a dynamically generated one. The il code is simple: ldarg_0, callvirt, ret. Executing the method fails with TypeLoadException saying it cannot load the ...
3
votes
3answers
2k views

Debugging .NET dynamic methods

We are using LINQ very widely in our system. Particularly LINQ-to-objects. So in some places we end up having a LINQ query in memory build up from some huge expressions. The problem comes when there's ...
2
votes
4answers
430 views

Python: using Self and adding methods to an object on the fly

Here's my idea: Start with a simple object: class dynamicObject(object): pass And to be able to add pre written methods to it on the fly: def someMethod(self): pass So that I can do ...
2
votes
2answers
70 views

I know how to set class methods, but how do I set instance methods on the fly?

I asked a previous question on class methods, but I really want to understand how to do this for instance methods as well. Thanks! =) The code below sets class methods for a given array: class ...
2
votes
2answers
345 views

Ruby equivalents for PHP's magic methods __call, __get and __set

I am pretty sure that Ruby has these (equivalents for __call, _get and _set), because otherwise how find_by would work in Rails? Maybe someone could give a quick example of how to define methods that ...
2
votes
4answers
1k views

Does Java support dynamic method invocation?

class A { void F() { System.out.println("a"); }} class B extends A { void F() { System.out.println("b"); }} public class X { public static void main(String[] args) { A objA = ...
2
votes
2answers
1k views

c# Emitting Dynamic Method Delegate to Load Parametrized Constructor Problem

I am trying create a delegate representation of constructor by emitting a Dynamic Method, which has to match this very "loosely-typed" signature so it can be used with any kind of parametrized ...
1
vote
2answers
213 views

Is this dynamic dispatch?

Is this dynamic dispatch: abstract class A{ public method Meth1(){ //somecode } } class B extends A{ } class C extends A{ } In another class entirely: Some_Method(A a){ ...
1
vote
4answers
208 views

Ruby create methods from a hash

I have the following code I am using to turn a hash collection into methods on my classes (somewhat like active record). The problem I am having is that my setter is not working. I am still quite new ...
1
vote
2answers
353 views

Missing static get method on Grails Domain Class

We keep getting the following error intermittently in production with grails. It says there is no get method for the given domain class. This happens once every few days on code that is executing ...
1
vote
1answer
277 views

Comparing all properties of an object using expression trees

I'm trying to write a simple generator that uses an expression tree to dynamically generate a method that compares all properties of an instance of a type to the properties of another instance of that ...
1
vote
2answers
217 views

Defining methods on the fly in Ruby / Rails - how to set params?

I am trying to define a set of functions where I can pass in given params. for example, how do i do the following? >> get_1_type("xxx") V4_RELATIONSHIP_TYPES=[1=>2,3=>4] ...
1
vote
4answers
2k views

Generate dynamic method to set a field of a struct instead of using reflection

Let's say I have the following code which update a field of a struct using reflection. Since the struct instance is copied into the DynamicUpdate method, it needs to be boxed to an object before ...
0
votes
1answer
43 views

How does one look up documentation for dynamic methods and or dynamic objects in Grails?

I'm familiar with the concept that dynamic methods are added via AOP to domain objects in Grails. But since they're dynamic, how is it that you find the documentation to them? It wouldn't be ...
0
votes
1answer
171 views

Ruby send method with rails associations

I have been messing about with making a sortable table module thing. I know some might exist but want to get experience doing this myself. I had the idea of have it like so: ...
0
votes
3answers
266 views

Dynamically call method in c#

I've got a lot of entity classes, and now in all properties of the entity classes need to add new functionality (call some method) in the getters and setters. What i want to say looks like this: ...