Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I evaluate C# code dynamically?

I can do an eval("something()"); to execute the code dynamically in JavaScript. Is there a way for me to do the same thing in C#?

An example of what I am trying to do is: I have an integer variable (say i) and I have multiple properties by the names: "Property1", "Property2", "Property3", etc. Now, I want to perform some operations on the " Propertyi " property depending on the value of i.

This is really simple with Javascript. Is there any way to do this with C#?

like image 311
Adhip Gupta Avatar asked Aug 07 '08 12:08

Adhip Gupta


People also ask

How do you evaluate C expressions?

C Expression EvaluationThe operator with higher precedence is evaluated first and the operator with the least precedence is evaluated last. An expression is evaluated based on the precedence and associativity of the operators in that expression.

What does evaluate mean C?

Expression evaluation in C is used to determine the order of the operators to calculate the accurate output. Arithmetic, Relational, Logical, and Conditional are expression evaluations in C.

Does C evaluate right to left?

There is no concept of left-to-right or right-to-left evaluation in C, which is not to be confused with left-to-right and right-to-left associativity of operators: the expression f1() + f2() + f3() is parsed as (f1() + f2()) + f3() due to left-to-right associativity of operator+, but the function call to f3 may be ...

How do you evaluate an expression explain with example?

To evaluate an algebraic expression, you have to substitute a number for each variable and perform the arithmetic operations. In the example above, the variable x is equal to 6 since 6 + 6 = 12. If we know the value of our variables, we can replace the variables with their values and then evaluate the expression.

How to evaluate an expression in C++?

An expression can have operands and operators. In C++, the order of operands and operators is very important. Let’s see how we can evaluate an expression with some examples. When we are evaluating an expression, we first find the operator with the highest precedence.

How to evaluate your program?

6 steps to evaluating your program. 1 1. Revisit your goals. Refer back to the goals you identified when you developed your initial work plan. In order to set appropriate benchmarks, think ... 2 2. Set benchmarks. 3 3. Document the basics. 4 4. Track the outcomes. 5 5. Communicate the “public voice”. More items

What is the best way to evaluate string expressions dynamically?

Here is a list of the most popular approaches that I am aware of for evaluating string expressions dynamically in C#. Seems you left out a few options (some in other answers here) such as DataColumn.Expression and DataTable.Compute and the deprecated JScript.

Is there a good way to evaluate expressions in JavaScript?

The open-source library Jint is able to do it. It's a Javascript interpreter for .NET. Pass a Javascript program and it will run inside your application. You can even pass C# object as arguments and do automation on it. Also if you just want to evaluate expression on your properties, give a try to NCalc.


2 Answers

Using the Roslyn scripting API (more samples here):

// add NuGet package 'Microsoft.CodeAnalysis.Scripting' using Microsoft.CodeAnalysis.CSharp.Scripting;  await CSharpScript.EvaluateAsync("System.Math.Pow(2, 4)") // returns 16 

You can also run any piece of code:

var script = await CSharpScript.RunAsync(@"                 class MyClass                 {                      public void Print() => System.Console.WriteLine(1);                 }") 

And reference the code that was generated in previous runs:

await script.ContinueWithAsync("new MyClass().Print();"); 
like image 100
Eli Arbel Avatar answered Oct 15 '22 22:10

Eli Arbel


DISCLAIMER: This answer was written back in 2008. The landscape has changed drastically since then.

Look at the other answers on this page, especially the one detailing Microsoft.CodeAnalysis.CSharp.Scripting.

Rest of answer will be left as it was originally posted but is no longer accurate.


Unfortunately, C# isn't a dynamic language like that.

What you can do, however, is to create a C# source code file, full with class and everything, and run it through the CodeDom provider for C# and compile it into an assembly, and then execute it.

This forum post on MSDN contains an answer with some example code down the page somewhat:
create a anonymous method from a string?

I would hardly say this is a very good solution, but it is possible anyway.

What kind of code are you going to expect in that string? If it is a minor subset of valid code, for instance just math expressions, it might be that other alternatives exists.


Edit: Well, that teaches me to read the questions thoroughly first. Yes, reflection would be able to give you some help here.

If you split the string by the ; first, to get individual properties, you can use the following code to get a PropertyInfo object for a particular property for a class, and then use that object to manipulate a particular object.

String propName = "Text"; PropertyInfo pi = someObject.GetType().GetProperty(propName); pi.SetValue(someObject, "New Value", new Object[0]); 

Link: PropertyInfo.SetValue Method

like image 39
Lasse V. Karlsen Avatar answered Oct 15 '22 21:10

Lasse V. Karlsen