Hi there,
I see a sample code that an object is instantiated within the
class definition block. But when I test the folllowing, I got
error "Process is terminated due to StackOverflowException."?
Imports System
Module xx
Sub Main()
Dim a As New c()
End Sub
End Module
Public Class c
Dim b As New c()
End Class
Thanks
A Huang