如何在 C# 中使用数组类的 GetType 方法?


C# 中的数组类的 GetType() 方法获取当前实例的 Type(从 Object 继承)。

获取类型。

Type tp = value.GetType();

在以下示例中,我们将使用类型检查 int 值。

if (tp.Equals(typeof(int)))
Console.WriteLine("{0} is an integer data type.", value)

以下是 GetType() 方法在 C# 中的用法。

示例

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);
      }
   }
}

更新时间: 23-6-2020

2K+ 次观看

开启你的 职业

完成课程以获取认证

开始
广告