"Adam Cigánek" <[email protected]> wrote in message news:[email protected]... > Hello, > > Is there a way to get a fully qualified name of an identifier as a > string during compile time? __traits(identifier) returns only > unqualified name. >
You could try 'identifier.stringof'. But I don't know if that'll give you what you want, and .stringof does have a history of being buggy, poorly-defined, and frequently changing.
