我正在使用 从 创建 .然后在我的项目中重新启用并进行转换:xsltc.exe
A.dll
A.xslt
A.dll
XslCompiledTransform xslt = new XslCompiledTransform(); xslt.Load(typeof(A)); // A is a public static class from A.dll xslt.Transform(RootPath + "A.xml", RootPath + "A.txt");
但是我如何在运行时重新生成并进行转换?A.dll
ITMISS
相关分类