我想做一個快速程序,創建一個非常簡單的XML文件。我想創建一個使用'for循環'的XML文件來多次創建XML的一部分。當我建立我得到一個錯誤說‘對’「的表達式無效項。我檢查我的括號平衡,它似乎要退房。如何使用for循環編寫XML文件?
有誰知道這個錯誤是什麼意思?
static void Main(string[] args)
{
XDocument myDoc = new XDocument(
new XDeclaration("1.0" ,"utf-8","yes"),
new XElement("Start"),
for(int i = 0; i <= 5; i++)
{
new XElement("Entry",
new XAttribute("Address", "0123"),
new XAttribute("default", "0"),
new XElement("Descripion", "here is the description"),
new XElement("Data", "Data goes here ")
);
}
);
}
這可能是問題,但有我可以用另一種方法? – tennis779
這絕對是問題 – mclaassen
http://msdn.microsoft.com/en-us/library/system.xml.linq.xdocument.aspx – mclaassen