📜  C#| Type.GetTypeArray()方法

📅  最后修改于: 2021-05-29 21:34:12             🧑  作者: Mango

Type.GetTypeArray()方法用于获取指定数组中对象的类型。

下面的程序说明了Type.GetTypeArray()方法的用法:

范例1:

// C# program to demonstrate the
// Type.GetTypeArray(Object[]) Method
using System;
using System.Globalization;
using System.Reflection;
  
// Defining class Empty
public class Empty { }
  
class GFG {
  
    // Main Method
    public static void Main()
    {
  
        // try-catch block for handling Exception
        try {
  
            // creating and initializing object
            object[] obj = {2, 3.4, 'c', "ram"};
  
            // using GetProperties() Method
            Type[] type = Type.GetTypeArray(obj);
  
            // Display the Result
            Console.WriteLine("Types of the objects in the specified array: ");
            for (int i = 0; i < type.Length; i++)
                Console.WriteLine(" {0}", type[i]);
        }
  
        // catch ArgumentNullException here
        catch (ArgumentNullException e)
        {
            Console.Write("One or more of the elements in args is null.");
            Console.Write("Exception Thrown: ");
            Console.Write("{0}", e.GetType(), e.Message);
        }
    }
}
输出:
Types of the objects in the specified array: 
 System.Int32
 System.Double
 System.Char
 System.String

范例2:

// C# program to demonstrate the
// Type.GetTypeArray(Object[]) Method
using System;
using System.Globalization;
using System.Reflection;
  
// Defining class Empty
public class Empty {}
  
class GFG {
  
    // Main Method
    public static void Main()
    {
  
        // try-catch block for handling Exception
        try {
  
            // creating and initializing object
            object[] obj = {2, 3.4, 'c', "ram", null};
  
            // using GetProperties() Method
            Type[] type = Type.GetTypeArray(obj);
  
            // Display the Result
            Console.WriteLine("Types of the objects in the specified array: ");
            for (int i = 0; i < type.Length; i++)
                Console.WriteLine(" {0}", type[i]);
        }
  
        // catch ArgumentNullException here
        catch (ArgumentNullException e) 
        {
            Console.WriteLine("One or more of the elements in args is null.");
            Console.Write("Exception Thrown: ");
            Console.Write("{0}", e.GetType(), e.Message);
        }
    }
}
输出:
One or more of the elements in args is null.
Exception Thrown: System.ArgumentNullException

参考:

  • https://docs.microsoft.com/zh-cn/dotnet/api/system.type.gettypearray?view=netframework-4.8