Get full class name at compile time - Not yet implemented

2014-11-12 Thread Andre via Digitalmars-d-learn
Hi, I currently have some issues to get the full class name at compile time by the variable which might point to null. With .stringof I get the class name without the module. It seems typeid(typeof()) is the solution, but DMD throws the error: source\app.d(10): Error: typeid(app.A).name is

Re: Get full class name at compile time - Not yet implemented

2014-11-12 Thread Rikki Cattermole via Digitalmars-d-learn
On 13/11/2014 6:22 p.m., Andre wrote: Hi, I currently have some issues to get the full class name at compile time by the variable which might point to null. With .stringof I get the class name without the module. It seems typeid(typeof()) is the solution, but DMD throws the error:

Re: Get full class name at compile time - Not yet implemented

2014-11-12 Thread Andre via Digitalmars-d-learn
perfekt, thanks a lot. Kind regards André On Thursday, 13 November 2014 at 05:37:26 UTC, Rikki Cattermole wrote: On 13/11/2014 6:22 p.m., Andre wrote: http://dlang.org/phobos/std_traits.html#fullyQualifiedName