// archives

Namespace

This tag is associated with 1 posts

Introduction to Namespaces

A namespace

A  section of code
Delimited and referred to using a specific name
Give a common name to that portion of code so that, when referring to it, only entities that are part of that section would referred to

A namespace is created to

Set apart a portion of code with the goal to reduce, otherwise eliminate, confusion

How to [...]