Sorry for the trivial question. If mClass1 is a property on the main window and the app repeatedly calls:
mClass1 = New Class1
Class1:
Public Sub Constructor()
mClass2 = New Class2
End Sub
Public Property mClass2 as Class2
Is this a circular reference? Should mClass2 be a WeakRef?
Thanks in advance.