The dynamic-code tag has no wiki summary.
16
votes
1answer
335 views
How to highlight dynamic code in visual studio
Is it possible and if so how, to make Visual Studio highlight dynamic expressions in code?
When I just hovered above some code, visual studio told me it was a dynamic expression. This made me realize ...
6
votes
2answers
413 views
Java Dynamic Code Generation with support for generics
Is there any tool which provides Java dynamic code generation and that also supports generics?
Javassist for example, is the kind of tool that I need, but it does not support generics.
I wrote a ...
5
votes
3answers
87 views
In how many ways can methods be added to a ruby object?
When it comes to run time introspection and dynamic code generation I don't think ruby has any rivals except possibly for some lisp dialects. The other day I was doing some code exercise to explore ...
3
votes
3answers
141 views
Workflow like system to change code flow
I need advice regarding a requirement in one of our project. What we are trying to achieve is that we want to control flow of methods calls from a text or XML file.
For example:
string response = ...
3
votes
3answers
510 views
C# Dynamic Type Initializer
I'm trying to build something like the C# type initalizer dynamically:
MyClass class = new MyClass { MyStringProperty= inputString };
I want to build a generic method that reflects over a given ...
2
votes
3answers
226 views
Loading multiple versions of the same class
Let's say I release a code library as a standalone PHP class. Someone then uses version 1.0 of that library in their application. Later, I release version 2.0 of the library and that same someone, ...
2
votes
2answers
87 views
Are there possible security concerns with exposing system.dll via web service?
I'm curious what damage someone could do with just access to the System.dll namespace in C#.
I was playing around with dynamic code compiling and created a simple website which allows me to type in ...
1
vote
0answers
59 views
Is it possible to dynamically generate bytecode that is executed inside the LLVM started by lli?
I am currently evaluating possible tools to generate machine code ahead-of-time and dynamically for a toy compiler project.
The compiler should be able to translate the source code into a runnable ...
1
vote
1answer
278 views
Place an object on top of stack in ILGenerator
I have to pass a function an instance of an object, so obviously all the information to be taken as argument is to be loaded onto the evaluation stack
Here is the code that i am looking for
someClass ...
0
votes
3answers
89 views
Execute a method of a different namspace by dynamic code in C# winforms
I am implementing a dynamic code execution in C# which allows users to write their own c# for that particular application.
I am using C# code compiler for executing the dynamic codes. The C# compiler ...