Computer Science, asked by apernamal1591, 1 year ago

How to define namespaces in C#?

Answers

Answered by RDEEP90
0

Definition and Creation:

Namespace is a feature added in C++ and not present in C.

A namespace is a declarative region that provides a scope to the identifiers (names of the types, function, variables etc) inside it.

Multiple namespace blocks with the same name are allowed.

Similar questions