This makes sense. using VS2005 and VA 1640 I have added the following code to a cs file:
public class Form1 : Form
{
public Form1()
{
}
private int getBananaHeight() { return 3; }
private int getBananaWidth() { return 2; }
private void testThisAndBaseListboxes()
{
|
}
};
typing "this." shows me this, once I have scrolled to the top of the listbox:
and typing "base." shows me this, once I have scrolled half way down the list to find when the bold items stop working:
This is what I would expect to see. Am I testing the wrong thing? Can you try the same test in your solution please, I am wondering if the problem only effects specific classes.