PhysicalAddress::Equals Method (Object^)
.NET Framework (current version)
Compares two PhysicalAddress instances.
Assembly: System (in System.dll)
Parameters
- comparand
-
Type:
System::Object^
The PhysicalAddress to compare to the current instance.
Return Value
Type: System::Booleantrue 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
Available since 2.0
Show: