Re: newbie: Circular references across modules

2010-04-30 Thread Larry Luther
Thanks for your help.

Re: newbie: Access violation because of "class"

2010-04-30 Thread Larry Luther
Thanks for your help.

Re: newbie: Circular references across modules

2010-04-30 Thread BCS
Hello Ellery, as long as you don't need any static constructors or destructors in either a or b. It's a side issue but: static constructors + cyclic imports == pain -- ... <

Re: newbie: Access violation because of "class"

2010-04-30 Thread bearophile
Larry Luther: > Why do I get an "object.Error: Access Violation" in the following code? > If I change "class" to "struct" and remove "public:" I don't get an error. > I'm using D2. D classes are not like C++ classes, they are managed by reference only, as in Java. See the scope keyword too. Bye