namespace
Hi...
I do not understand what the keyword 'namespace' is used for. For example...
// csharp program
namespace Timer
{
class .....
....
}
I am infact used to packages in Java..... to be able to create a package..... it must be added to the first line of the code for example............
// Java program
package newPackage;
class ...
....
Is it a similar concept..... if not how do we declare namespaces (packages?) in C#...........
thanks,
Ibn_Aziz
|