Namespace

  • Thread starter Thread starter Vishnu Sunkara
  • Start date Start date
V

Vishnu Sunkara

How to create new name space like Production.Application in C++. I can do it
just typing this name in c#.

When I did it in C++ it not allowing me to create with multiple names. I
tried different formats without much luck

Can anyone tell me what is the sysntax to create new like this format in the
project of calss libraries.

Thanks
Vishnu
 
How to create new name space like Production.Application in C++. I can do
it just typing this name in c#.

When I did it in C++ it not allowing me to create with multiple names. I
tried different formats without much luck

The way to do it is like this:

namespace Production
{
namespace Application
{
}
}

--

Kind regards,
Bruno van Dooren
(e-mail address removed)
Remove only "_nos_pam"
 
Thank you.

Bruno van Dooren said:
The way to do it is like this:

namespace Production
{
namespace Application
{
}
}

--

Kind regards,
Bruno van Dooren
(e-mail address removed)
Remove only "_nos_pam"
 
Back
Top