-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Expand file tree
/
Copy pathUnknownTypes.il
More file actions
59 lines (51 loc) · 1.85 KB
/
UnknownTypes.il
File metadata and controls
59 lines (51 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#define CORE_ASSEMBLY "System.Runtime"
.assembly extern CORE_ASSEMBLY
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) // .?_....:
.ver 4:0:0:0
}
.assembly extern UnknownAssembly
{
.publickeytoken = (01 02 03 04 05 06 07 08 )
.ver 1:0:0:0
}
.class private auto ansi beforefieldinit UnknownTypes
extends [System.Private.CoreLib]System.Object
{
.field private initonly class [UnknownAssembly]IInterface memberField
// Methods
.method public hidebysig specialname rtspecialname
instance void .ctor () cil managed
{
// Method begins at RVA 0x206e
// Code size 8 (0x8)
.maxstack 8
IL_0000: ldarg.0
IL_0001: call instance void [CORE_ASSEMBLY]System.Object::.ctor()
IL_0006: nop
IL_0007: ret
} // end of method UnknownTypes::.ctor
.method public hidebysig virtual
instance bool CanExecute (
class [UnknownAssembly]CallbackQuery message
) cil managed
{
// Method begins at RVA 0x4dbc
// Code size 44 (0x2c)
.maxstack 8
IL_0000: ldarg.0
IL_0001: ldfld class [UnknownAssembly]IInterface UnknownTypes::memberField
IL_0006: newobj instance void [UnknownAssembly]SomeClass::.ctor()
IL_000b: dup
IL_000d: ldarg.1
IL_000e: call int64 [UnknownAssembly]StaticClass::GetChatId(class [UnknownAssembly]CallbackQuery)
IL_0013: stfld int64 [UnknownAssembly]SomeClass::ChatId
IL_0018: dup
IL_001a: ldarg.1
IL_001b: call int32 [UnknownAssembly]StaticClass::GetMessageId(class [UnknownAssembly]CallbackQuery)
IL_0020: conv.i8
IL_0021: stfld int64 [UnknownAssembly]SomeClass::MessageId
IL_0026: callvirt instance !1 class [UnknownAssembly]IInterface`2<class [UnknownAssembly]SomeClass, bool>::Execute(!0)
IL_002b: ret
} // end of method CanExecute
} // end of class UnknownTypes