ホーム › System.ClrHosting › EClrEvent
EClrEvent
列挙型メンバー 5
| 名前 | 10進 | 16進 |
|---|---|---|
| Event_DomainUnload | 0 | 0x0 |
| Event_ClrDisabled | 1 | 0x1 |
| Event_MDAFired | 2 | 0x2 |
| Event_StackOverflow | 3 | 0x3 |
| MaxClrEvent | 4 | 0x4 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum EClrEvent : int {
Event_DomainUnload = 0,
Event_ClrDisabled = 1,
Event_MDAFired = 2,
Event_StackOverflow = 3,
MaxClrEvent = 4
} EClrEvent;public enum EClrEvent : int
{
Event_DomainUnload = 0,
Event_ClrDisabled = 1,
Event_MDAFired = 2,
Event_StackOverflow = 3,
MaxClrEvent = 4,
}Public Enum EClrEvent As Integer
Event_DomainUnload = 0
Event_ClrDisabled = 1
Event_MDAFired = 2
Event_StackOverflow = 3
MaxClrEvent = 4
End Enumimport enum
class EClrEvent(enum.IntEnum):
Event_DomainUnload = 0
Event_ClrDisabled = 1
Event_MDAFired = 2
Event_StackOverflow = 3
MaxClrEvent = 4// EClrEvent
pub const Event_DomainUnload: i32 = 0;
pub const Event_ClrDisabled: i32 = 1;
pub const Event_MDAFired: i32 = 2;
pub const Event_StackOverflow: i32 = 3;
pub const MaxClrEvent: i32 = 4;// EClrEvent
const (
Event_DomainUnload int32 = 0
Event_ClrDisabled int32 = 1
Event_MDAFired int32 = 2
Event_StackOverflow int32 = 3
MaxClrEvent int32 = 4
)const
Event_DomainUnload = 0;
Event_ClrDisabled = 1;
Event_MDAFired = 2;
Event_StackOverflow = 3;
MaxClrEvent = 4;// EClrEvent
pub const Event_DomainUnload: i32 = 0;
pub const Event_ClrDisabled: i32 = 1;
pub const Event_MDAFired: i32 = 2;
pub const Event_StackOverflow: i32 = 3;
pub const MaxClrEvent: i32 = 4;const
Event_DomainUnload* = 0
Event_ClrDisabled* = 1
Event_MDAFired* = 2
Event_StackOverflow* = 3
MaxClrEvent* = 4enum EClrEvent : int {
Event_DomainUnload = 0,
Event_ClrDisabled = 1,
Event_MDAFired = 2,
Event_StackOverflow = 3,
MaxClrEvent = 4,
}#define global Event_DomainUnload 0x0
#define global Event_ClrDisabled 0x1
#define global Event_MDAFired 0x2
#define global Event_StackOverflow 0x3
#define global MaxClrEvent 0x4