摘要: Abstract: IL directives: ld<xxx>: load xxx onto stack st<xxx>: pop off stack into xxx (1) ldarg.<length> - load argument onto the stack Format Assembly Format Description FE 09 ... 阅读全文
posted @ 2009-10-24 11:23 FangwenYu 阅读(320) 评论(0) 推荐(0) 编辑
摘要: Abstract: 通过查看IL来了解下声明在using语句中的对象是在try语句外面实例化还是在try里面实例化。 举例来说,下面的c# code 1: using(FileStream aFs = new FileStream(@"c:\test.txt", FileMode.Open)) 2: { 3: // Do noting... 4: }是对应下面的那种情况呢?(1) 1: File... 阅读全文
posted @ 2009-10-24 11:12 FangwenYu 阅读(230) 评论(0) 推荐(0) 编辑