Is there any XSLT library 开发者_如何学编程available for the Windows Mobile platform? I need to transform my XML document to HTML. It can be a plus if compatible with .NET CF.
Thanks, Ben
The XslCompiledTransform should be supported in the .NET CF.
EDIT
Apparently XslCompiledTransform is not supported on any mobile platform for the .NET CF.
Maybe System.Xml.Linq.XDocument and related classes are suitable for your needs. They are supported in .NET CF 3.5 on Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC.
Yes, see blog post from August 2006. OpenNETCF.
精彩评论