缺少ReadElementString的指令或程序集引用

时间:2012-04-01 20:34:50

标签: c# xml

在使用System.XML.XmlReader对象时,我似乎无法使用ReadElementString。 我收到以下错误:

  

'System.Xml.XmlReader'不包含。的定义   'ReadElementString'并没有扩展方法'ReadElementString'   接受'System.Xml.XmlReader'类型的第一个参数可能是   发现(您是否缺少using指令或程序集引用?)

这是我的代码:

using System;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using System.Xml.Serialization;
using System.IO;
using System.Xml;
using System.Text;

public void ReadXml (XmlReader reader)
{
    this.pKidsID = reader.GetAttribute("KidsID");
    reader.MoveToContent();
    reader.ReadStartElement();
    this.FirstName = reader.ReadElementString("FirstName");
    this.Name = reader.ReadElementString("Name");
    reader.Read();
    reader.ReadEndElement();
}

以下是我的xml文件的示例。你能告诉我如何使用Linq to XML来读取这个文件:

<?xml version="1.0" encoding="utf-8"?>
<Kids>
  <Child>
    <Name>kidone</Name>
    <FirstName>elmo</FirstName>
  </Child>
  <Child>
    <Name>kidtwo</Name>
    <FirstName>elmo</FirstName>
  </Child>
</Kids>

1 个答案:

答案 0 :(得分:1)

检查项目引用并添加对System.Xml.dll文件的引用。由于你已经有using System.Xml;指令,我怀疑没有引用dll。

从Solution Explorer菜单中,选择References,它将显示所有引用的文件。右键单击它并选择“添加引用...”,然后添加System.Xml.dll文件。或者,您可以从“项目”菜单中执行此操作。

除此之外,您发布的代码看起来不完整,因为它不包含在类中,但我猜您没有共享完整的代码。