我有一个contextStrategie:
Shared Sub New()
If ConfigurationManager.AppSettings.GetValues("Context").ToString = "Custom" Then
_context = New CustomHandler
Else
_context = New XMLHandler
End If
End Sub
我正在尝试(出于测试目的)获取用于我的实例的类的名称:
Dim context As ContextStrategie = New ContextStrategie()
'what I tried :
test.InnerText = context.GetType.Name
我尝试返回 ContextStrategie ,这对我没用。
获取 CustomHandler 或 XMLHandler 的任何方法?
答案 0 :(得分:0)
GetType是一个函数 - 尝试context.GetType()。Name。