is it possible to create an anonymous method in c# from a string?
e.g. if I have a string "x + y * z" is it possible to turn this into some sort of method/lambda object that I can call with arbitrary x,y,z parameters?
|
3
|
is it possible to create an anonymous method in c# from a string? e.g. if I have a string
|
||||||||
|
|
|
It's possible, yes. You have to parse the string and, for example, compile a delegate using expression trees. Here's an example of creating
|
||||||
|
|
|
C# doesn't have any functionality like this (other languages - like JavaScript - have |
||
|
|
|
|
Just for fun using CodeDom (any valid C# code is allowed in the string as long as it is present in mscorlib (No check for errors at all):
|
||
|
|
|
|
There are functionality to do this in the .Net framework. It is not easy. You need to add some code around the statement to make it into a complete assembly including a class and method you can call. After that you pass the string to
|
||
|
|
|
It could be possible with a grammar (e.g. ANTLR) and an interpreter which creates expression trees. This is no small task, however, you can be successful if you limit the scope of what you accept as input. Here are some references:
Here is what some code may look like to transform an ANTLR ITree into an Expression tree. It isn't complete, but shows you what you're up against.
|
||
|
|