C#中数组类的GetType()方法获取当前实例的Type(从Object继承)。
获取类型。
Type tp = value.GetType();
在下面的示例中,我们正在使用类型检查int值。
if (tp.Equals(typeof(int))) Console.WriteLine("{0} is an integer data type.", value)
以下是C#中GetType()方法的用法。
using System public class Program { public static void Main() { object[] values = { (int) 100, (long) 17111}; foreach (var value in values) { Type tp = value.GetType(); if (tp.Equals(typeof(int))) Console.WriteLine("{0} is aninteger data type.", value); else Console.WriteLine("'{0}' is not an int data type.", value); } } }