namespaces

  • Thread starter Thread starter BM
  • Start date Start date
B

BM

Hi everyone,

A wee question:

How do I create namespaces that follow the standard below:

mycompanyname.bll
mycompanyname.pl
mycompanyname.dl

VS.NET will always (by default) start with "system" or something like that.
That's not what I want.

Thx for any help

BM
 
Right click the project and set the assembly name in
the properties. It doesn't necessarily have to
match the name space in your actual classes
but most people do.

I think the most common namespace naming
convention is:

companyname.productname.somedescriptorofassemblypurpose.dll
 
: mycompanyname.bll
: mycompanyname.pl
: mycompanyname.dl

In the Menu:

Project -> Project Properties -> General

In the option of "Default Namespace", change it to whatever you want to.
 
Thank you all guys for the prompt response.

Robbe Morris said:
Right click the project and set the assembly name in
the properties. It doesn't necessarily have to
match the name space in your actual classes
but most people do.

I think the most common namespace naming
convention is:

companyname.productname.somedescriptorofassemblypurpose.dll
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top