When coding a very common construct in C#:
private string lastUsed;
public string LastUsed { get { return lastUsed; } }
as I get to the "return l" in the 2nd line, and type the suggestion box appears, but always highlights the "LastUsed" (vs. the lower case option like I have typed), which means I have to stop typing and select the correct one, or just type it out manually.
Really not that big a deal when the variable is so short, but still a small anoyance I thought I'd mention.
Patrick