F Flinky Wisty Pomm Apr 4, 2006 #2 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.
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] Apr 4, 2006 #3 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
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