XNodeEqualityComparer Construtor

Definição

Inicializa uma nova instância da XNodeEqualityComparer classe.

public:
 XNodeEqualityComparer();
public XNodeEqualityComparer();
Public Sub New ()

Exemplos

O exemplo seguinte usa esta classe para determinar se dois nós são iguais.

XElement xmlTree1 = new XElement("Root",
    new XAttribute("Att1", 1),
    new XAttribute("Att2", 2),
    new XElement("Child1", 1),
    new XElement("Child2", "some content")
);
XElement xmlTree2 = new XElement("Root",
    new XAttribute("Att1", 1),
    new XAttribute("Att2", 2),
    new XElement("Child1", 1),
    new XElement("Child2", "some content")
);
XNodeEqualityComparer equalityComparer = new XNodeEqualityComparer();
Console.WriteLine(equalityComparer.Equals(xmlTree1, xmlTree2));
xmlTree2.Add(new XElement("NewChild", "new content"));
Console.WriteLine(equalityComparer.Equals(xmlTree1, xmlTree2));

Este exemplo produz a seguinte saída:

True
False

Aplica-se a

Ver também