So I was catching up on some blogging and noticed a thread about “issues” with VS. One such issue was the “class Derived: Base crashes the editor” bug. Sure enough this is 100% repeatable in C#.
Vb on the other hand has absolutely no “issues” here and you can code this in VB without problem.
Class Base(Of T)
Sub Merge(ByVal other As T)
End Sub
End Class
Class Derived
Inherits Base(Of Derived)
End Class
For the record, the problem in C# seems tot be a problem matching }'s
If only they had explicitly named closing constructs 