4
我需要將下面的代碼添加到一個XML文件的開頭,在創建它:如何使用C#將xml-stylesheet標記添加到XML文件?
<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/xsl" href="colors.xslt"?>
我敢肯定有這種方法,但我還沒有找到它。我正在使用C#。 謝謝
我需要將下面的代碼添加到一個XML文件的開頭,在創建它:如何使用C#將xml-stylesheet標記添加到XML文件?
<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/xsl" href="colors.xslt"?>
我敢肯定有這種方法,但我還沒有找到它。我正在使用C#。 謝謝
XmlDocument.CreateProcessingInstruction Method
public static void Main()
{
var doc = new XmlDocument();
doc.AppendChild(doc.CreateProcessingInstruction(
"xml-stylesheet",
"type='text/xsl' href='colors.xslt'"));
}