I'm trying to parse this expression
in C# like so:
fun(p1, p2, 33,"lina", g(x,5), ...)
How can I get the "type" of everything in the expression
, given these examples:
fun ---> function
p1, p2 ---> variables
33 ---> constant
"lina" ---> constant
g ---> function
x ---> variable
5 ---> constant