What are the contents of assembly?
Answers were Sorted based on User's Feedback
Answer / swapna
In general, a static assembly can consist of four elements:
The assembly manifest, which contains assembly metadata.
Type metadata.
Microsoft intermediate language (MSIL) code that implements
the types.
A set of resources
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / swapnil
Assembly having 3 main parts 1) IL- containing Business logic,
2)Metadata- structure of class 3) Manifest-- All additional
info regarding to assembly
Is This Answer Correct ? | 0 Yes | 0 No |
What is Separation of Concerns in ASP.NET ASP.Net MVC?
What is mvc entity framework?
What is html.renderpartial?
what is view state
Can any particular component of .net framework 3.0 be removed?
Requirement is: try { \\SQL Query } catch(Exception i) { print a } catch(SQLQueryException e) { \\SQL Query } Qu)I Got Exception in "try" block. Which "catch" statement (i.e. 1st catch or 2nd catch ) catches the exception and Why???
Explain the methods used to render the views in mvc?
Is .net framework going away?
What is NonActionAttribute ?
What is .net framework & its benefits?
Changes to which portion of version number indicates an incompatible change
What are multicast delegates ? give me an example