摘要:
环境visual studio 2010.net framework 4.01. 编译 &反汇编1.1 编译 csc.exe /out:c:\test.exe c:\test.cs1.2 反汇编 用IL反汇编工具,打开 test.exe 然后存储。2. 数组int[,] points = new int[3,2]{{1, 2}, {2, 3}, {3, 4}};如果不赋值默认值应该是0(书上说是null)。3. 类型转换int a = int.Parse("3");int b = (int)3.14;int c = System.Convert.ToInt32(3. 阅读全文