Find the location of class from declare

F

Flinky Wisty Pomm

If you're using Visual Studio, I think you can right click your method
call and select "Go to definition" but it's been a while.
 
K

Karl Seguin [MVP]

And to do so programatically, the best you can hope for is:

dim x as new NewClass()
dim type as Type = x.GetType();

t.Assembly.FullName
and
t.FullName

which'll give you the assembly and the namespace

Karl
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,436
Messages
2,571,696
Members
48,796
Latest member
Greg L.
Top