What are the XSLT processor for .NET?
开发者_开发技巧I'd like people's opinion on the "best" XSLT processor for .NET, but what are the good options for processing XSLT in .NET? What do you use and how well does it serve you?
I just use .NET's own XslCompiledTransform
. Works fine. Never considered finding a different one.
If you want XSLT 2.0 then your best bet is probably Saxon. It's written by Michael Kay, who was editor of the XSLT 2.0 specification and was joint editor of the XPath 2.0 specification.
Disclaimer: I am a developer of XQSharp.
XQSharp is a XSLT 2 and XQuery processor written entirely in .NET.
精彩评论