I have an expression tree I have created by parsing an Xml using the expression class in C#. See this question.
I only have Add, Subtract, Divide, Multiply, Paramete
You need to create a lambda - i.e.
var lambda = Expression.Lambda>(body, param); Func method = lambda.Compile(); int v = method(1.0); // test
where "body" is your expression tree (taking a float, returning an int) involving the ParameterExpression param.
ParameterExpression
You might also find this and this helpful.