在C#中,typeof關鍵字通常用于獲取指定類型的Type對象。在泛型編程中,可以使用typeof關鍵字來獲取泛型類型的Type對象。例如:
public class GenericClass<T>
{
public void PrintType()
{
Type type = typeof(T);
Console.WriteLine("Type of T is: " + type);
}
}
class Program
{
static void Main()
{
GenericClass<int> genericClass = new GenericClass<int>();
genericClass.PrintType(); // 輸出:Type of T is: System.Int32
}
}
在上面的示例中,我們定義了一個泛型類GenericClass