Last active
October 11, 2018 17:52
-
-
Save dsibinski/dd7ace10bbca0668bf6337078d96483c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Microsoft (R) .NET Framework IL Disassembler. Version 4.0.30319.33440 | |
// Copyright (c) Microsoft Corporation. All rights reserved. | |
// Metadata version: v4.0.30319 | |
.assembly extern mscorlib | |
{ | |
.publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) // .z\V.4.. | |
.ver 4:0:0:0 | |
} | |
.assembly '0bigfb2c' | |
{ | |
.hash algorithm 0x00008004 | |
.ver 0:0:0:0 | |
} | |
.module '0bigfb2c.dll' | |
// MVID: {3DD8C852-9FE1-4825-8784-3D7200409F2F} | |
.imagebase 0x10000000 | |
.file alignment 0x00000200 | |
.stackreserve 0x00100000 | |
.subsystem 0x0003 // WINDOWS_CUI | |
.corflags 0x00000001 // ILONLY | |
// Image base: 0x01580000 | |
// =============== CLASS MEMBERS DECLARATION =================== | |
.class public auto ansi beforefieldinit Program | |
extends[mscorlib] System.Object | |
{ | |
.method public hidebysig static void Main() cil managed | |
{ | |
// | |
.maxstack 8 | |
IL_0000: nop | |
IL_0001: ldstr "Hello Readers!" | |
IL_0006: call void [mscorlib] | |
System.Console::WriteLine(string) | |
IL_000b: nop | |
IL_000c: ret | |
} // end of method Program::Main | |
.method public hidebysig specialname rtspecialname | |
instance void .ctor() cil managed | |
{ | |
// | |
.maxstack 8 | |
IL_0000: ldarg.0 | |
IL_0001: call instance void [mscorlib] | |
System.Object::.ctor() | |
IL_0006: ret | |
} // end of method Program::.ctor | |
} // end of class Program |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment