У меня есть 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 ?