星期四, 2月 10, 2022

[C#] typeof

要利用 typeof 來取得泛型類別時卡關,訊息如下
如何:使用反映檢視和執行個體化泛型類型 發現該下述語法,才搞清楚要如何取的
Type t = typeof(Dictionary<,>);
實際測試
namespace TypeofSample
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine(typeof(Dictionary<,>));

            Console.WriteLine(typeof(Demo<>));
            Console.WriteLine(typeof(Demo<DateTime>));
        }
    }

    public class Demo<T>
    {

    }
}

沒有留言:

張貼留言