S
sam c
I have some code that looks a bit like this (note: this isn't the
actual code, it's just here in an attempt to help me explain what
actions I'm doing):
void foo(int bar1)
{
}
void foo(float bar2)
{
foo(3);
}
If I move the cursor by mouse to the word "foo" on the line "foo(3)"
and then do any of the following:
- press "control-f" to search for this function
- hilite the word "foo" by double clicking it and then right click
with the mouse
Then .NET will hang.
It's actually interesting, because if I use the keyboard it seems to
avoid the hang in most cases.
I thought it was an intellisense problem, but I turned off every
intellisense option I could find, and I even tried making the .ncb file
for the solution read only (suggested somewhere else on this forum).
Anyone have any other ideas? Unfortunately I have the bad habit of
doing silly things like clicking on functions with my mouse and then
searching for them, or trying to right click on them to "go to
definition".
thanks,
sam
actual code, it's just here in an attempt to help me explain what
actions I'm doing):
void foo(int bar1)
{
}
void foo(float bar2)
{
foo(3);
}
If I move the cursor by mouse to the word "foo" on the line "foo(3)"
and then do any of the following:
- press "control-f" to search for this function
- hilite the word "foo" by double clicking it and then right click
with the mouse
Then .NET will hang.
It's actually interesting, because if I use the keyboard it seems to
avoid the hang in most cases.
I thought it was an intellisense problem, but I turned off every
intellisense option I could find, and I even tried making the .ncb file
for the solution read only (suggested somewhere else on this forum).
Anyone have any other ideas? Unfortunately I have the bad habit of
doing silly things like clicking on functions with my mouse and then
searching for them, or trying to right click on them to "go to
definition".
thanks,
sam