共用方式為


CONSTRUCTOR_ENUM

 

如需 Visual Studio 2017 的最新文件請參閱 Visual Studio 2017 文件

選取不同類型的建構函式。

語法

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

Members

crAll
選取所有建構函式。

crNonStatic
選取非靜態建構函式。

crStatic
選取靜態建構函式。

備註

若要以引數傳遞EnumConstructors方法。

需求

標頭︰ sh.h

命名空間︰ Microsoft.VisualStudio.Debugger.Interop

組件︰ Microsoft.VisualStudio.Debugger.Interop.dll

另請參閱

列舉型別
GetReason