1
1
12rbah2022-02-08 14:10:28
C++ / C#
12rbah, 2022-02-08 14:10:28

What is the correct way to name the namespaces in a project?

Tell me if there is any guide on how to properly name the namespace in the project.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
K
KryOne, 2022-02-08
@12rbah

Alternatively, by the names of modules in the project and their areas of responsibility.
Project->Module->...
For example,

namespace Matlab::LinearAlgebra::Matrix
{
}

Matrix - a namespace that contains classes for working with matrices, which is located in the Linear Algebra module of the Matlab project.

G
GavriKos, 2022-02-08
@GavriKos

Steve McConnell - Perfect code. Here is a guide for you

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question