XName.Equality(XName, XName) 연산자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
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 ( = ) : System.Xml.Linq.XName * System.Xml.Linq.XName -> bool
Public Shared Operator == (left As XName, right As XName) As Boolean
매개 변수
반환
left
와 right
가 같으면 true
이고, 그렇지 않으면 false
입니다.
예제
다음 예제에서는 개체와 문자열 간의 XName 몇 가지 비교를 보여 줍니다.
XName xn;
xn = XName.Get("Root");
Console.WriteLine(xn == "Root");
xn = XName.Get("Root", "http://www.adventure-works.com");
Console.WriteLine(xn == "{http://www.adventure-works.com}Root");
XElement root = new XElement("Root", "content");
Console.WriteLine(root.Name == "Root");
Dim xn As XName
xn = XName.Get("Root")
Console.WriteLine(xn = "Root")
xn = XName.Get("Root", "http://www.adventure-works.com")
Console.WriteLine(xn = "{http://www.adventure-works.com}Root")
Dim root As XElement = New XElement("Root", "content")
Console.WriteLine(root.Name = "Root")
이 예제는 다음과 같은 출력을 생성합니다.
True
True
True
설명
연산자는 ==
오버로드되고 !=
다음과 같이element.Name == "SomeElementName"
비교를 XName string
사용하도록 설정하기 위해 포함됩니다. C#의 미리 정의된 참조 같음 연산자는 참조 변환을 통해서만 하나의 피연산자를 다른 피연산자의 형식으로 변환할 수 있어야 합니다. 이러한 연산자는 문자열에서 .로의 암시적 변환을 XName고려하지 않습니다.