You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've noticed that Forward references are actually implemented but in this case the reference is followed at "compile time" of class A and at that point class A doesn't exist yet.
I know this is similar to #45 but bare with me, it is different
I have this situation:
which results in:
I've noticed that Forward references are actually implemented but in this case the reference is followed at "compile time" of
class A
and at that pointclass A
doesn't exist yet.Basically you want to use a late bind like this:
The text was updated successfully, but these errors were encountered: