Computer Science Canada c# build dynamic expressions help |
Author: | mirhagk [ Fri Jan 07, 2011 5:35 pm ] |
Post subject: | c# build dynamic expressions help |
The name says it. I want to create a function on the go. Basically I want to make a graphing calculator and I want to know how if it's possible to create a lamda or Func<> on the go. (if not I have a worse case scenario of a switch and a list of functions that it will run instead of just one. (ie the functions are single operators) |
Author: | 2goto1 [ Fri Jan 07, 2011 8:35 pm ] |
Post subject: | RE:c# build dynamic expressions help |
The DLR might be one way to go, http://www.voidspace.org.uk/ironpython/hosting_api.shtml, http://dlr.codeplex.com/. |