If I have a text stored in db, file, resource does not matter:
<code><%= Integer.MaxValue %></code>
Is there a way to do this:
Dim el As XElement = XElement.Parse({variable containing text above})
and to have it evaluate the expression Integer.MaxValue?
Short answer is no. Compiler knows how to parse this and replaces your source code with something that looks like one would do in C# code.
Test code:
Reflected code: