Edit

Share via


CONSTRUCTOR_ENUM

Selects different types of constructors.

Syntax

public enum ConstructorMatchOptions {
    crAll       = 0,
    crNonStatic = 1,
    crStatic    = 2
};

Fields

crAll
Selects all constructors.

crNonStatic
Selects non-static constructors.

crStatic
Selects static constructors.

Remarks

Passed as an argument to the EnumConstructors method.

Requirements

Header: sh.h

Namespace: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

See also