+ 1
namespace in c#
Hello, I was learning C++ but was convinced that c# would be easier an better for my gaming puposes and I have finished the basics and can't understand namespace. In c++ I can use something like namespace std that allows me to use the standard library. Here in C#we have namespace sololearn and I google search a little and foubd stuff like namespace helloworld. I simple can't understand the use of namespace in C#
4 Answers
+ 2
Correct. For example System is a namespace. A lot of classes are shared in the System namespace like Console and IO.
+ 1
namespace is a super class. Most of the time a company name is used.
Namespace : NiceCompany
ProjectA
ProjectB
share functionality between projects
now we can call
NiceCompany. ProjectA
NiceCompany. ProjectB
Most of The time you do not notice that you are working in a namespace. In small projects you do not need to
0
So, it's like namespace is the name of whatever I'm working with and it can be used to share functions? That's interesting
0
I see, thanks for the help!