I'm trying to get the full name of a namespace and convert it to a string.
Specifically, I have the namespace DevExpress.Xpf
and I would like nameof2(DevExpress.Xpf)
or some equivalent to return "DevExpress.Xpf"
, rather than the "Xpf"
that nameof
returns.
Currently, I am using $"{nameof(DevExpress)}.{nameof(DevExpress.Xpf)}"
to achieve this end.
Is it possible to use reflection or some other feature of C# to get the full address of a namespace as a string?