C#
 Computer >> コンピューター >  >> プログラミング >> C#

C#のType.GetTypeHandle()メソッド


C#のType.GetTypeHandle()メソッドは、指定されたオブジェクトのTypeのハンドルを取得するために使用されます。

構文

以下は構文です-

public static RuntimeTypeHandle GetTypeHandle (object ob);

上記のobは、タイプハンドルを取得するオブジェクトです。

using System;
public class Demo {
   public static void Main(){
      Type type1 = typeof(System.Type);
      RuntimeTypeHandle typeHandle = Type.GetTypeHandle(type1);
      Type type = Type.GetTypeFromHandle(typeHandle);
      Console.WriteLine("Attributes = " + type.Attributes);
      Console.WriteLine("Type Referenced = "+ type);
   }
}

出力

これにより、次の出力が生成されます-

Attributes = AutoLayout, AnsiClass, Class, Serializable, BeforeFieldInit
Type Referenced = System.RuntimeType

Type.GetTypeHandle()メソッドを実装する別の例を見てみましょう-

using System;
public class Demo {
   public static void Main(){
      Type type1 = typeof(double);
      RuntimeTypeHandle typeHandle = Type.GetTypeHandle(type1);
      Type type = Type.GetTypeFromHandle(typeHandle);
      Console.WriteLine("Attributes = " + type.Attributes);
      Console.WriteLine("Type Referenced = "+ type);
   }
}

出力

これにより、次の出力が生成されます-

Attributes = AutoLayout, AnsiClass, Class, Serializable, BeforeFieldInit
Type Referenced = System.RuntimeType

  1. C#のType.GetArrayRank()メソッド

    C#のType.GetArrayRank()メソッドは、配列の次元数を取得します。 構文 public virtual int GetArrayRank (); Type.GetArrayRank()メソッドを実装する例を見てみましょう- 例 using System; public class Demo {    public static void Main(string[] args) {       Type type = typeof(int[,, ]);       int arrRank = typ

  2. C#のType.Equals()メソッド

    C#のType.Equals()メソッドは、現在のTypeの基になるシステムタイプが、指定されたオブジェクトまたはTypeの基になるシステムタイプと同じであるかどうかを判断します。 構文 public virtual bool Equals (Type o); public override bool Equals (object o); 上記のパラメータは、基礎となるシステムタイプが現在のタイプの基礎となるシステムタイプと比較されるオブジェクトです。 Type.Equals()メソッドを実装する例を見てみましょう- using System; public class Demo { &n