请问一个C# 数据类型的问题,请大家帮忙解决.
c#中:
int i=100;
想知道c#中用什么方法可以获得i的数据类型呢/(或者获得其类名也可以)
我知道asp中可以用typename(变量)获得其数据类型.不知道c#中是否有这样的方法
呢?
------解决方案--------------------i.GetType();返回一个Type类的对象
------解决方案--------------------int j = 0;
if (j.GetType() == typeof(int))
{
MessageBox.Show( "find it is int Type ");
}