up vote 30 down vote favorite
12
share [g+] share [fb]

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#?

What I am exactly trying to do is that 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#?

Edit: Oh, and I am using C# 2.0

link|improve this question

62% accept rate
c# call ironpython's eval. I tried it in c# 4.0. no experience with c# 2.0 – Peter Long May 15 '11 at 3:00
@Peter Long, where can I find documentation on IronPython's eval ? – smartcaveman Jun 16 '11 at 16:09
feedback

16 Answers

up vote 24 down vote accepted

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: http://forums.msdn.microsoft.com/en-US/csharpgeneral/thread/6a783cc4-bb54-4fec-b504-f9b1ed786b54/

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: http://msdn.microsoft.com/en-us/library/system.reflection.propertyinfo.setvalue(VS.71).aspx

link|improve this answer
feedback

Not really. You can use reflection to achieve what you want, but it won't be nearly as simple as in Javascript. For example, if you wanted to set the private field of an object to something, you could use this function:

  protected static void SetField(object o, string fieldName, object value)
{
FieldInfo field = o.GetType().GetField(fieldName, BindingFlags.Instance | BindingFlags.NonPublic);
field.SetValue(o, value);
}
link|improve this answer
feedback

All of that would definitely work. Personally, for that particular problem, I would probably take a little different approach. Maybe something like this:

class MyClass {
public Point point1, point2, point3;

private Point[] points;

public MyClass() {
//...
this.points = new Point[] {point1, point2, point3};
}

public void DoSomethingWith(int i) {
Point target = this.points[i+1];
// do stuff to target
}
}

When using patterns like this, you have to be careful that your data is stored by reference and not by value. In other words, don't do this with primitives. You have to use their big bloated class counterparts.

I realized that's not exactly the question, but the question has been pretty well answered and I thought maybe an alternative approach might help.

link|improve this answer
feedback

I don't now if you absolutely want to execute C# statements, but you can already execute Javascript statements in C# 2.0. 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.

link|improve this answer
feedback

My C# Eval program allows you to do this. It accepts a substantial subset of the C# language and compiles it at run time into dynamic methods. Look at my website KamimuCode.Com for the full details.

link|improve this answer
feedback

You can use reflection to get the property and invoke it. Something like this:

object result = theObject.GetType().GetProperty("Property" + i).GetValue(theObject, null);

That is, assuming the object that has the property is called "theObject" :)

link|improve this answer
feedback

Take a look at Mono's CSharp interactive shell. It has eval-like functions.

link|improve this answer
feedback

This is an eval function under c#. I used it to convert anonymous functions (Lambda Expressions) from a string. Source: http://www.codeproject.com/KB/cs/evalcscode.aspx

public static object Eval(string sCSCode) {

  CSharpCodeProvider c = new CSharpCodeProvider();
  ICodeCompiler icc = c.CreateCompiler();
  CompilerParameters cp = new CompilerParameters();

  cp.ReferencedAssemblies.Add("system.dll");
  cp.ReferencedAssemblies.Add("system.xml.dll");
  cp.ReferencedAssemblies.Add("system.data.dll");
  cp.ReferencedAssemblies.Add("system.windows.forms.dll");
  cp.ReferencedAssemblies.Add("system.drawing.dll");

  cp.CompilerOptions = "/t:library";
  cp.GenerateInMemory = true;

  StringBuilder sb = new StringBuilder("");
  sb.Append("using System;\n" );
  sb.Append("using System.Xml;\n");
  sb.Append("using System.Data;\n");
  sb.Append("using System.Data.SqlClient;\n");
  sb.Append("using System.Windows.Forms;\n");
  sb.Append("using System.Drawing;\n");

  sb.Append("namespace CSCodeEvaler{ \n");
  sb.Append("public class CSCodeEvaler{ \n");
  sb.Append("public object EvalCode(){\n");
  sb.Append("return "+sCSCode+"; \n");
  sb.Append("} \n");
  sb.Append("} \n");
  sb.Append("}\n");

  CompilerResults cr = icc.CompileAssemblyFromSource(cp, sb.ToString());
  if( cr.Errors.Count > 0 ){
      MessageBox.Show("ERROR: " + cr.Errors[0].ErrorText, 
         "Error evaluating cs code", MessageBoxButtons.OK, 
         MessageBoxIcon.Error );
      return null;
  }

  System.Reflection.Assembly a = cr.CompiledAssembly;
  object o = a.CreateInstance("CSCodeEvaler.CSCodeEvaler");

  Type t = o.GetType();
  MethodInfo mi = t.GetMethod("EvalCode");

  object s = mi.Invoke(o, null);
  return s;

}
link|improve this answer
lol-ed at `Lambada Expressions' (limbo lower now) – sehe Nov 30 '11 at 15:11
@sehe Whoops, I corrected the typo (Lambada => Lambda). I didn't knew that the song is called Lambada so this one was unintentional. ;) – Largo Dec 23 '11 at 22:47
feedback

You also could implement a Webbrowser, then load a html-file wich contains javascript.

Then u go for the document.InvokeScript Method on this browser. The return Value of the eval function can be catched and converted into everything you need.

I did this in several Projects and it works perfectly.

Hope it helps

link|improve this answer
feedback

You could do it with a prototype function:

void something(int i, string P1) {
    something(i, P1, String.Empty);
}

void something(int i, string P1, string P2) {
    something(i, P1, P2, String.Empty);
}

void something(int i, string P1, string P2, string P3) {
    something(i, P1, P2, P3, String.Empty);
}

and so on...

link|improve this answer
feedback

Do the the properties have to be properties? Why not use a list to group the properties and reference them by index?

link|improve this answer
feedback

Unfortunately, C# doesn't have any native facilities for doing exactly what you are asking.

However, my C# eval program does allow for evaluating C# code. It provides for evaluating C# code at runtime and supports many C# statements. In fact, this code is usable within any .NET project, however, it is limited to using C# syntax. Have a look at my website, http://csharp-eval.com, for additional details.

link|improve this answer
feedback

Don't use reflection, it's dirty (I really don't like it).

Wait for .NET 4.0 and use Expression Trees: http://community.bartdesmet.net/blogs/bart/archive/2009/08/10/expression-trees-take-two-introducing-system-linq-expressions-v4-0.aspx

link|improve this answer
5  
"dirty"? Data binding and serialisation are built on top of reflection, so it can't be that bad. :-) – Christian Hayter Sep 18 '09 at 7:54
I know, it's very powerful. And with great power comes great responsibility. And a user who asks this type of question shouldn't touch reflection. – Snake Nov 3 '09 at 11:10
feedback

This is a very simple approach that is easy to understand. Just use another variable to reference the one you want.

string Property1 = "data 1";
string Property2 = "data 2";
string Property3 = "data 3";

int i = 2;
string whichProperty = "";

if (i == 1) { whichProperty = Property1; }
if (i == 2) { whichProperty = Property2; }
if (i == 3) { whichProperty = Property3; }

//now use the member variable that was set
int mathResult = getScores(whichProperty);

Otherwise you should learn to use ILists or arrays, or anything else to hold a series of values or settings.

link|improve this answer
feedback

the correct answer is you need to cache all the result to keep the mem0ry usage low.

an example would look like this

TypeOf(Evaluate)
{
"1+1":2;
"1+2":3;
"1+3":5;
....
"2-5":-3;
"0+0":1
} 

and add it to a List

List<string> results = new List<string>();
for() results.Add(result);

save the id and use it in the code

hope this helps

link|improve this answer
Uhmmm... what do you mean? – GlitchMr Aug 27 '11 at 9:44
somebody confused evaluation with lookup. If you know all possible programs (I think that is at least NP-Hard)... and you have a supermachine to precompile all possible results... and there are no sideeffects/external inputs... Yeah, this idea theoretically works. The code is one big syntax error, though – sehe Nov 30 '11 at 15:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.