Mouse Over in Environment

  • Thread starter Thread starter Garrett
  • Start date Start date
G

Garrett

Hi all,

I come for a C# background and am trying to learn VB.Net. Normally,
in VS.Net when I mouse over an object, the pop-up shows the
Assembly.Class.Method (or other member) so that you can tell exactly
where an object originates. It doesn't seem to do this in VB.Net for
instance: mousing over the class Convert when using the
Convert.ToInt32 just pops-up "Class Convert" rather than "Class
System.Convert". I am sure it's just a simple setting but I can't
seem to find it...any help?

Thanks
 
Hi Garrett,

One of the two things that C# has more than VB.net is that it has a better
intelisence.
(Because the existence of background compiling which is not in C#, this is
less important of course in VB.net).

However what I ask myself with this question is, what is the difference
between
Class Convert and Class system.convert when, as always, there is an import
from system?

Cor
 
Back
Top