Introduction
Namespace is use for providing away to keep one set of names separate from another. In other word namespace structure all the project into the same modules and to make the differ classes with same name. A namespace is a way to provide separation of selected class in a hole program.
Example
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace one
{
class name_one
{
public void func()
{
Console.WriteLine("Function Of first namespace\n");
}
}
}
namespace two
{


Florian BesserPosted Sep 27, 2013, 3:46 PM
Guggenheim