adspace


What are the types of assemblies in .net?

Answer Posted / Pravesh Kumar

In .NET, there are four types of assemblies: Executable (EXE), Dynamic-link library (DLL), Single File (Library), and Client Profile. Each type serves a specific purpose and is used accordingly based on the requirements of an application.nnExample:nn```csharpn// Executable assembly - console applicationnConsoleApplicatio
1.exenn// Dynamic-link library assembly - class librarynClassLibrary1.dllnn// Single File assembly - single file executable (with a manifest embedded in the EXE)nSingleFileApplicatio
1.exenn// Client Profile assembly - optimized version of an assembly for reducing deployment size and improving application startup timenClientProfile.dll```

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