what is the difference between a namespace and assembly ?
Answer Posted / kumar abhinav
Namespace: It is a Collection of names wherein each name is Unique.
They form the logical boundary for a Group of classes.
Namespace must be specified in Project-Properties.
Assembly: It is an Output Unit. It is a unit of Deployment & a unit of versioning. Assemblies contain MSIL code.
Assemblies are Self-Describing. [e.g. metadata,manifest]
An assembly is the primary building block of a .NET Framework application. It is a collection of functionality that is built, versioned, and deployed as a single implementation unit (as one or more files). All managed types and resources are marked either as accessible only within their implementation unit, or by code outside that unit.
| Is This Answer Correct ? | 7 Yes | 1 No |
Post New Answer View All Answers
can any one suggestion me present which course(except java,.net) has huge demand in the market?
When we delete logfiles such as screenshots how does it affect the ldf file? Ive seen huge change while adding screenshots in the ldf file but a very minor one deleting them.Please Explain
Hi I am Rathnam, How To Remove the duplicates with out using remove duplicate stage in the datastage
What is the difference between CLEAR & RESET and OPEN & CLOSE OPCOEDS(USING RPG/400).wheare we can use this?can any body tell me in real time senario with example please?
How does the TCP handle the issue of multiplexing?
1. Write a program to create a sentence at runtime and count number of vowels in it ? 2. Write a program to get a string and to convert the 1st letter of it to uppercase ?
Mainly Related to Oracle, DBMS , Oracle Stored Procedures, Functions, Oracle 9i Architecture, Redo logs..., Views,
how to display xisheet in list box in c# .net
What do you understand by modular programming?
can we use commit,rollback in triggers and how?
How to print No.of.rows affected after updation using ADO.Net
what are stubs related to foxpro?
What is test execution and when will we start execution please send me one example for this question
what are the advantages of sap on other software ?
Given an array all of whose elements are positive numbers, find the maximum sum of a subsequence with the constraint that no 2 numbers in the sequence should be adjacent in the array. So 3 2 7 10 should return 13 (sum of 3 and 10) or 3 2 5 10 7 should return 15 (sum of 3, 5 and 7)