XName.Inequality(XName, XName) 运算符

定义

返回一个值,该值指示 XName 的两个实例是否相等。

public:
 static bool operator !=(System::Xml::Linq::XName ^ left, System::Xml::Linq::XName ^ right);
public static bool operator != (System.Xml.Linq.XName left, System.Xml.Linq.XName right);
public static bool operator != (System.Xml.Linq.XName? left, System.Xml.Linq.XName? right);
static member op_Inequality : System.Xml.Linq.XName * System.Xml.Linq.XName -> bool
Public Shared Operator != (left As XName, right As XName) As Boolean

参数

left
XName

要比较的第一个 XName

right
XName

要比较的第二个 XName

返回

Boolean

如果 leftright 不相等,则为 true;否则为 false

示例

以下 C# 示例将对象 XName 与调用此运算符的字符串进行比较。

XNamespace aw = "http://www.adventure-works.com";  
XElement root = new XElement(aw + "Root", "content");  

Console.WriteLine(root.Name != "{http://www.adventure-works.com}Root");  

// the following is the preferred idiom  
Console.WriteLine(root.Name != aw + "Root");  
Imports <xmlns="http://www.adventure-works.com">  

Module Module1  
    Sub Main()  
        Dim root As XElement = <Root>content</Root>  
        Console.WriteLine(root.Name <> "{http://www.adventure-works.com}Root")  

        ' the following is the preferred idiom  
        Console.WriteLine(root.Name <> GetXmlNamespace() + "Root")  
    End Sub  
End Module  

该示例产生下面的输出:

False  
False  

注解

运算符重载 ==!= 包含在内,用于启用字符串之间的 XName 比较,例如element.Name == "SomeElementName"。 C# 中的预定义引用相等运算符要求一个操作数只能通过引用转换转换为另一个操作数。 这些运算符不考虑从字符串到 XName的隐式转换。

适用于

另请参阅