REFERENCE_COMPARE

Specifies the type of comparison for references.

enum enum_REFERENCE_COMPARE { 
   REF_COMPARE_EQUAL        = 0x0001,
   REF_COMPARE_LESS_THAN    = 0x0002,
   REF_COMPARE_GREATER_THAN = 0x0003
};
typedef DWORD REFERENCE_COMPARE;
public enum enum_REFERENCE_COMPARE { 
   REF_COMPARE_EQUAL        = 0x0001,
   REF_COMPARE_LESS_THAN    = 0x0002,
   REF_COMPARE_GREATER_THAN = 0x0003
};

Members

  • REF_COMPARE_EQUAL
    Specifies an equal-to comparison.

  • REF_COMPARE_LESS_THAN
    Specifies a less-than comparison.

  • REF_COMPARE_GREATER_THAN
    Specifies a greater-than comparison.

Remarks

Passed as an argument to the IDebugReference2::Compare method.

Requirements

Header: msdbg.h

Namespace: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

See Also

Reference

Enumerations (Visual Studio Debugging)

IDebugReference2::Compare