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

后端 未结 6 2169
醉话见心
醉话见心 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 23:00

    This looks like a job for polymorphism, as opposed to a big switch statement with tests for specific classes.

提交回复
热议问题