If you mean something like just doing an eval() a la javascript or other dynamic languages, then no.
The reason is that you don't want necessarily want to allow any arbitrary c# code to run there; that would be a huge injection security vulnerability. Just because those other languages allow it doesn't mean it's always a good idea.
This is one good example. How would you restrict the user to mathematical expressions only? Now, you could argue that you could just use a simple regex first- say something that limits the expression to digits, whitespace, and ()+-*!^/.. Maybe. But what if you wanted to allow things like absolute value, trig functions, etc? Where do you draw the line?
That said, I've heard rumblings that an eval -like function may be high on the list for a future version of the language - perhaps that would allow a security context (primitive types only and the Math namespace only, for example).