I asked this question recently: create a namespace in c++/cli? and so I am trying to create my own namespace in c++/cli.
But when I use the same namespace in two se
The C++/CLI compiler is stuck with the build model of traditional C and C++ compilers. Formulated at a time when a kilobyte of memory took as much space as a shoebox. It is a single-pass compiler that processes one .cpp file at a time. With a linker to glue the bits together.
Which means that you'll have to use traditional header files to declare your classes and the #include directive at the top of your source code file to include it.