初学者请教!
我是一名.net的初学者,问出的问题可能大家会笑话,呵呵。 我在.net里新建了一个空的c#工程,然后写了下面的代码。
using System; using System.Xml;
public class Test{
public static void Main(string[] args){
XmlDocument doc = new XmlDocument(); doc.Load("test.xml");
XmlElement firstCD = (XmlElement) doc.DocumentElement.FirstChild; XmlElement artist = (XmlElement) firstCD.GetElementsByTagName("artist")[0]; XmlElement title = (XmlElement) firstCD.GetElementsByTagName("title")[0]
Console.WriteLine("Artist={0}, Title={1}", artist.InnerText, title.InnerText); } } 编译后提示:The type or namespace name"Xml" does not exist in (这里是我存工程的目录) 不知道是什么问题,请教各位达人!!! 敬礼。