adspace


How to produce an assembly?

Answer Posted / Neha Joshi

An assembly in .NET is a executable file (EXE) or a DLL containing one or more compiled code modules, resources, and metadata.nnTo create an assembly, follow these steps:n
1. Write your code in Visual Studio or another .NET IDE.
2. Build the project by either pressing F5 to run the project or clicking on the Build button (or Build menu) to build the solution.
3. The output will be an executable (EXE) file or a DLL depending on the project type.

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'?

1141