C#.NET - How can I get typeof() to work with inheritance?

后端 未结 6 2168
醉话见心
醉话见心 2021-02-18 22:47

I will start by explaining my scenario in code:

public class A { }

public class B : A { }

public class C : B { }

public class D { }

public c         


        
6条回答
  •  你的背包
    2021-02-18 22:59

    You can just use is:

    if (c is B) // Will be true
    
    if (d is B) // Will be false
    

提交回复
热议问题