adspace


What is the difference between a namespace and assembly name in .net?

Answer Posted / Shalvendra Payal

A Namespace is a logical container used to organize types, providing a unique naming context for classes, interfaces, structures, enumerations, value types, and namespaces. On the other hand, an Assembly is a compiled collection of .NET files that can contain multiple namespaces, classes, and versions. While a single assembly can have only one primary file (with the extension .exe or .dll), it can encompass multiple namespaces.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write the .net syntax for 'while loop'?

1143