概要
ilasmでstack machineやってみた。
練習問題やってみた。
練習問題
ilasmでWindows.Formsを使え。
方針
枠だけの窓を作る。
写真
サンプルコード
.assembly extern System.Windows.Forms {
.publickeytoken = (B7 7A 5C 56 19 34 E0 89) .ver 2:0:0:0
}
.assembly extern mscorlib {
.publickeytoken = (B7 7A 5C 56 19 34 E0 89) .ver 2:0:0:0
}
.assembly 'form1' {}
.class private auto ansi beforefieldinit form1 extends [System.Windows.Forms] System.Windows.Forms.Form {
.method public hidebysig static void Main() cil managed {
.entrypoint
newobj instance void form1::.ctor()
call void [System.Windows.Forms] System.Windows.Forms.Application::Run(class [System.Windows.Forms]System.Windows.Forms.Form)
ret
}
.method public hidebysig specialname rtspecialname instance void .ctor() cil managed {
ldarg.0
call instance void [System.Windows.Forms] System.Windows.Forms.Form::.ctor()
ret
}
}
以上