在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
属性输出类型的名称。