Tagged Questions

0
votes
0answers
28 views

EnvDTE.CodeClass.Base.Fullname does not give proper name for VB types

Public Class c1(Of T) End Class Public Class c2 Inherits c1(Of Integer) End Class For the following peice of code, if we try to get the CodeClass.Base.Fullname, it gives the fullname as "c1(Of …
4
votes
5answers
206 views

BaseType of a Basetype

Hello, this is my first question here so I hope I can articulate it well and hopefully it won't be too mind-numbingly easy. I have the following class SubSim which extends Sim, which is extending …