Another C# new bug in VS2005 SP1, similar to to this one.
When using the keyword new while trying to instantiate an embedded class, the type does not appear in the auto-complete list.
Steps to repeat:
1. Enter in the following code:
using System;
namespace Test
{
public class Class1
{
public class EmbeddedClass { }
}
public class Class2
{
Class1.EmbeddedClass obj = new
}
}