Is it possible to define methods outside the class in C ++ style? Something like this:

```d
class Parent{
   void Print();
}

void Parent.Print(){
   writeln("Hello, D!");
}
```

Reply via email to