https://cloud.tencent.com/developer/article/1507913 首先准备工具 VS2017 IIS 开始开发 先打开 VS 创建一个 winfrom 项目然后添加一个 C# dll 项目 IIS_backdoor_dll 项目代码 using System; using System.Collections; using System.Collections.ObjectModel; using System.Diagnostics; using Syst…
<深入理解Java虚拟机>中讲语法糖时,提到了下面这个例子(不是原文中的例子,我自己改过): public class AutoBoxingTest { /** * @param args */ public static void main(String[] args) { Integer a = 1; Integer b = 2; Integer c = 127; Integer d = 127; Integer e = 3; Integer f = 3; Long g = 3L; Sys…