IDebugField::Equal
Note
This article applies to Visual Studio 2015. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here
This method compares this field with the specified field for equality.
Syntax
HRESULT Equal(
IDebugField* pField
);
int Equal(
IDebugField pField
);
Parameters
pField
[in] The field to compare to this one.
Return Value
If the fields are the same, returns S_OK
. If the fields are different, returns S_FALSE.
Otherwise, returns an error code.