E.G.
Add this class to a project. VAX parses correctly but if you uncomment the new keyword of the Clear() method (as told to by the warnings), VAX does not parse the file correctly and in the View Context the only options are the class and namespace. No methods are shown.
using System.Collections.ObjectModel;
namespace VAXBug
{
public class StringCollection : Collection<string>
{
public /*new*/ void Clear()
{
}
protected override void ClearItems()
{
base.ClearItems();
}
}
}