Purpose

This page provides details on .Net namespaces.

Applicable in CAST Version
Release
Yes/No
8.3.x(tick)
8.2.x(tick)
8.1.x(tick)
8.0.x(tick)
7.3.x(tick)
7.2.x(tick)
7.0.x(tick)
Details

Namespace is a logical grouping of a related classes,structure and interface.It is heavily used within c# programming in different ways:

  1. The .NET Framework classes use namespaces to organize its many classes
  2. Declaring our own namespaces can help control the scope of class in larger programming projects.
  3.  Within the namespace, all declared items must be uniquely named. However, the same name may be duplicated in different namespaces.
Notes/comments


Related Pages