繼承的對象類型:在運行時獲取
class A : IInterface { }
在運行時:
A instance = new A();
instance.GetType(); // returns "A"
或
IInterface instance = new A();
instance.GetType(); // returns "A"
或
object instance = new A();
instance.GetType(); // returns "A"
問題:如何獲得IInterface
作爲類型?
究竟是什麼,需要 –