Edit

Share via


REFERENCE_COMPARE

Specifies the type of comparison for references.

Syntax

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

Fields

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 Compare method.

Requirements

Header: msdbg.h

Namespace: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

See also