使用XmlSerializer创建具有属性和值但没有子元素的元素

时间:2010-08-19 17:01:41

标签: c# xmlserializer

希望这对于那里的人(可能是一个骗子)应该是一个简单的答案,但我似乎无法弄明白。

我需要输出一个如下所示的元素:

<Quantity foo="AB" bar="CD">37</Quantity>

我知道如何得到这个:

  <Quantity foo="AB" bar="CD">
    <qty>37</qty>
  </Quantity>

,Quantity类包含

public int qty;    
[XmlAttribute]
public string foo;

[XmlAttribute]
public string bar;

但当然,无论我将数量插入到哪个变量中,它都会成为自己的子元素。

另一方面,如果我将数量作为父元素中的变量,那么我可以设置值并获取

<Quantity>37</Quantity>

但后来我不知道如何获取属性。

如果没有一种简单的方法可以使用XmlSerializer,我会感到非常惊讶,但我还不知道。有什么想法吗?

1 个答案:

答案 0 :(得分:52)

我在这里找到答案:Xmlserializer - Control Element-Attribute Pairing (revised)

以下是如何操作:使用[XmlText]属性标记value属性。

public class Quantity {
  // your attributes
  [XmlAttribute]
  public string foo;

  [XmlAttribute]
  public string bar;

  // and the element value (without a child element)
  [XmlText]
  public int qty;

}