c#创建命名空间
Namespace is a container for identifiers. It puts the names of its members in a distinct space so that they don't conflict with the names in other namespaces or global namespace.
命名空间是标识符的容器。 它将其成员的名称放在一个不同的空间中,以便它们与其他名称空间或全局名称空间中的名称不冲突。
创建一个命名空间 (Creating a Namespace)
Creating a namespace is similar to creation of a class.
创建名称空间类似于创建类。
namespace MySpace
{
// declarations
}
int main()
{
// main function
}
This will create a new namespace called MySpace, inside which we can put our member declarations.
这将创建一个名为MySpace的新命名空间,我们可以在其中放置成员声明。
创建命名空间的规则 (Rules to create Namespaces)
The namespace definition must be done at global scope, or nested inside another namespace.
名称空间定义必须在全局范围内完成,或嵌套在另一个名称空间内。
Namespace definition doesn't terminates with a semicolon like in class definition.
命名空间定义不以类定义中的分号结尾。
You can use an alias name for your namespace name, for ease of use.
您可以为名称空间名称使用别名,以方便使用。
Example for Alias:
别名示例:
namespace StudyTonightDotCom { void study(); class Learn { // class defintion }; } // St is now alias for StudyTonightDotCom namespace St = StudyTonightDotCom;
You cannot create instance of name