On 4/24/22 17:18, Vinod K Chandran wrote: > private this(int a, string b, bool c) {
Looks good to me. There are other ways as well: class Foo { private: // ... public: // ... } Or: class Foo { private { // ... } // ... } Ali
Ali Çehreli via Digitalmars-d-learn Sun, 24 Apr 2022 19:27:31 -0700
On 4/24/22 17:18, Vinod K Chandran wrote: > private this(int a, string b, bool c) {
Looks good to me. There are other ways as well: class Foo { private: // ... public: // ... } Or: class Foo { private { // ... } // ... } Ali