4
Reply

What is a .DLL and .EXE files called in .NET?

Chirag Satasiya

Chirag Satasiya

Nov 19, 2016
403
0

    DLL has no main method Exe has main

    Mukesh Kumar
    September 04, 2017
    0

    If any file which has not main method Called dynamic link library& a file which is executable called exe

    Mukesh Kumar
    August 29, 2017
    0

    .dll is for reusable component and .exe is executable files

    Manav Pandya
    February 09, 2017
    0

    It’s called an assembly.Whenever we create any program in .NET it generates an assembly.Assemblies will either have an extension of .DLL or .EXE.Good to know: For example if we compile a windows or console application, we generate a file with an .EXE extension, where as when we compile a web or Class library project we get a file with .DLL extension.

    Chirag Satasiya
    November 19, 2016
    0