Public Class EquipmentNode
'...
End Class
Private Sub DoWork()
Dim node As TreeNode = _contextNode
If node is EquipmentNode ' Does not work
if node is TypeOf EquipmentNode ' Does not work
End Sub
How can I see if the node is the same type. Right now I'm just casting it and seeing if the result is null, but I want to make use of the "Is" operator.

