Groups | Blog | Home
all groups > visual studio .net ide > january 2004 >

visual studio .net ide : BUG: VStudio7 thinks "_File::" is a URL


anonymous
1/19/2004 12:36:15 AM
Hello,
Using VS7 (v7.0.9466), I have created a c++ namespace called Garbage_File
To my great misfortune, the ide believes eveything on the line occuring directly after _File:: is a url.
So if I have typed
garbage_file::dosomething()
David Lowndes
1/19/2004 11:00:01 AM
[quoted text, click to view]

With VS2003, it doesn't seem to happen that way - but I no longer have
VS2002 installed to know if I'm doing precisely what you are.

FWIW, I created a console application and added this:

namespace Garbage_File
{
void M1( void )
{
}
}

int _tmain(int argc, _TCHAR* argv[])
{
Garbage_File::M1();

return 0;
}

The use of Garbage_File::M1() doesn't show as a URL and hovering over
it shows the proper tooltips giving type details.

If I comment out that line, hovering over the File::M1 part pops up a
tooltip indicating that it now thinks its a File::M1 link - however
even that seems to have been resolved in the Whidbey alpha release.

Dave
--
anonymous
1/19/2004 1:26:06 PM
AddThis Social Bookmark Button