I have a problem with my IntelliSense (Visual Studio 2010 using Resharper 8.2.1)
Note: I have elected to switch IntelliSense for "Letter and digits" to "Display but do not preselect" to not be bothered too much.
It has the stupid idea that everything I write is a new class:
foreach (var dataGridViewRow in regning.Value)
{
var rykker = dataGridViewRow.Tag as Rykker;
if (rykker != null)
{
sum += rykker.Beloeb + rykker.RykkerBeloeb + rykker.RenteBeloeb + ry|;
}
}
.
Suggestions are:
Class "ry" (does not exist and is not wanted)
Variable "rykker" (what I am most likely to want)
Class "Rykker"
Other things with "ry" in them
It also makes making an if statement somewhat annoying as it will substitute "if" for "@if" in order to have "if" be the name of a class
The problem goes away when I type the third letter, but at one letter it will suggest all two-character combinations starting with the letter:
I would like it to NOT suggest classes the do not exist - how can I do this?