What is the difference between typeof and the is keyword?

前端 未结 6 1083
太阳男子
太阳男子 2021-01-03 19:11

What\'s the exact difference between the two?

// When calling this method with GetByType()

public bool GetByType() {
    // this ret         


        
6条回答
  •  猫巷女王i
    2021-01-03 19:55

    typeof returns a Type object describing T which is not of type AClass hence the is returns false.

提交回复
热议问题