PhysicalAddress::Equals Method (Object^)

 

Compares two PhysicalAddress instances.

Namespace:   System.Net.NetworkInformation
Assembly:  System (in System.dll)

public:
virtual bool Equals(
	Object^ comparand
) override

Parameters

comparand
Type: System::Object^

The PhysicalAddress to compare to the current instance.

Return Value

Type: System::Boolean

true if this instance and the specified instance contain the same address; otherwise false.

The following code example compares two PhysicalAddress instances.

void ParseTest()
{
   PhysicalAddress^ address = PhysicalAddress::Parse( L"AC1EBA22" );
   Console::WriteLine( L"Address parsed as {0}", address->ToString() );
   PhysicalAddress^ address2 = PhysicalAddress::Parse( L"ac1eba22" );
   Console::WriteLine( L"Address2 parsed as {0}", address2->ToString() );
   bool test = address->Equals( address2 );
   Console::WriteLine( L"Equal? {0}", test );
}


.NET Framework
Available since 2.0
Return to top
Show: