日期:2014-05-18 浏览次数:20966 次
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace AboutInt
{
class Program
{
static void Main(string[] args)
{
int a = 0;
System.Int32 b = 0;
int c = new int();
System.Int32 d = new System.Int32();
}
}
}
------解决方案--------------------
Reflcetor也会"骗"你的眼睛的,要看这个问题还是要去到IL上看.
举个例子,就明白了:
有一段原始的C#代码:
static void Main(string[] args)
{
int i = 0;
Int32 j = 0;
i = i + j;
}
------解决方案--------------------