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