I have a stylesheet that makes use of exslt:dynamic module and more precisely, it only uses the evaluate function. I know the XslCompiledTransform from .NET 2.0 does not implement this module (just like the ExslTransform from Mvp.Xml).
Any idea how to solve this problem?
Mvp.Xml includes an similar extension function dyn2:dynamic.
There is no 1 parameter version of that extension function, because it would have no context to evaluate the expression in.
This following extension is a 1 parameter version of evaluate. The evaluation context is fixed.