I am seeing some weird behavior in the editor and with code completion. I wrote
the following code just a few minutes ago:
private void menuItem1_Click (object sender, System.EventArg s e)
{
SaveFileDialog sf = new SaveFileDialog( );
sf.DefaultExt = "xls";
sf.InitialDirec tory =
Environment.Get FolderPath(Envi ronment.Special Folder.Personal );
}
On the last line, when I type "Environmen t" and hit the period, I do not see
SpecialFolder in the code complete list. This code compiles just fine. That
surprised me. When I hover over the code on Personal in the last line, I do not
see a balloon tip with information about it either.
Does anybody have any ideas as to what might be up with this? By the way, under
the C# options, I have "Hide Advanced Members" unchecked.
the following code just a few minutes ago:
private void menuItem1_Click (object sender, System.EventArg s e)
{
SaveFileDialog sf = new SaveFileDialog( );
sf.DefaultExt = "xls";
sf.InitialDirec tory =
Environment.Get FolderPath(Envi ronment.Special Folder.Personal );
}
On the last line, when I type "Environmen t" and hit the period, I do not see
SpecialFolder in the code complete list. This code compiles just fine. That
surprised me. When I hover over the code on Personal in the last line, I do not
see a balloon tip with information about it either.
Does anybody have any ideas as to what might be up with this? By the way, under
the C# options, I have "Hide Advanced Members" unchecked.
Comment