Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将 VS.Net 设置为在构建时自动生成带有 XMLDoc 注释的 XML。这是通过项目的构建属性完成的。我还有一个 XSLT 来设置 XML 样式。
有没有办法让VS在生成时将xml样式表附加到文件中?
您应该能够使用 System.IO 对象。尤其是 StreamReader 和 StreamWriter,但也可能是 File(它有一个 .Append 函数)。