How do I get the default namespace of the project programatically ?
For example, the following code loads the embedded resource in the assembly
and "MyNS" is the default namespace.
assembly.GetMan ifestResourceSt ream("MyNS.Test .Rtf");
I do not want to hardcode it. I wish to have something like this:
assembly.GetMan ifestResourceSt ream(GetDefault NameSpace()+".T est.Rtf");
Thanks.
For example, the following code loads the embedded resource in the assembly
and "MyNS" is the default namespace.
assembly.GetMan ifestResourceSt ream("MyNS.Test .Rtf");
I do not want to hardcode it. I wish to have something like this:
assembly.GetMan ifestResourceSt ream(GetDefault NameSpace()+".T est.Rtf");
Thanks.
Comment