c#

typeof c#如何使用typeof运算符

小樊
81
2024-12-04 23:26:13
栏目: 编程语言

在C#中,typeof是一个运算符,用于获取一个类型的信息

using System;

class Program
{
    static void Main()
    {
        // 使用 typeof 获取 int 类型的Info
        Type intType = typeof(int);
        
        // 输出 int 类型的名称
        Console.WriteLine("The type of int is: " + intType.Name);
    }
}

在这个示例中,我们使用typeof运算符获取了int类型的信息,并将其存储在Type类型的变量intType中。然后,我们使用Name属性输出类型的名称。

0
看了该问题的人还看了