| Author: Nanak Deep 18 Jun 2008 | Member Level: Bronze Points : 2 |
very useful,, please also post information regarding
differences between
namespace / dll namespace / exe namespace / assembly assembly / project assebmly /project
i know them but are clashing with each other or other terms clear difference
thank u sir
|
| Author: Bunty 25 Jun 2008 | Member Level: Diamond Points : 2 |
Hi,
Nice information on Namespace.
You clearly mention what we can write in namespace.
Keep posting.
Thanks and Regards S.S.Bajoria
|
| Author: Ashish verma 26 Jun 2008 | Member Level: Bronze Points : 2 |
Its a nice piece of information about Namespace. Please also post the code snippet of deligate. Keep on posting more information regarding ADO.net. Thanks.
|
| Author: Sriram 05 Oct 2008 | Member Level: Gold Points : 2 |
NameSpace: Namespace is the Way of Organizing classes,Objects,Methods ,Properties ,Indexes ,to Avoid Naming Collisions to Lenthy NameSpace.
I have Two classes With same Name like Sample and Sample it cannot compile and run two classes with same that time we go for name space Concept.
using System; using System.Collections.Generic; using System.Linq; using System.Text;
namespace Namespace { class Sample { public int a; }
namespace Picture { class Sample { public int b; } } class Program { static void Main(string[] args) {
Namespace.Sample k = new Namespace.Sample (); Picture.Sample p = new Picture.Sample(); k.a =10; p.b = 20; Console .WriteLine ("This is Sample Values {0},{1}",k.a ,p.b ); Console.ReadLine (); } } }
|