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

后端 未结 6 2170
醉话见心
醉话见心 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:52

    For VB.NET with Visual Studio 2008, you can check it like:

    'MyTextBox control is inherited by Textbox
    If Ctl.GetType.Name = "MyTextBox" then    
    
    End If
    

提交回复
热议问题