Question

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Dib

    #1

    Question

    Hi,

    I am ne wto dot net. Can some one give me an in sight on this matter.
    Can you create a dll file through DOT net?

    just like in VB you can create a project then you compile it to be .dll
    extention. Is this possible in DOT net?

    Thanks
    Dib


  • Sijin Joseph

    #2
    Re: Question

    Yes it is certainly possible, if you are using VS.Net then just create a
    new Class Library project and the output will be a .dll, if you are
    using the .Net SDK then compile using /target:library option to create a
    library.

    Check out this site to get started with .Net
    http://msdn.microsoft.com/netframework/

    Sijin Joseph



    Dib wrote:[color=blue]
    > Hi,
    >
    > I am ne wto dot net. Can some one give me an in sight on this matter.
    > Can you create a dll file through DOT net?
    >
    > just like in VB you can create a project then you compile it to be .dll
    > extention. Is this possible in DOT net?
    >
    > Thanks
    > Dib
    >
    >[/color]

    Comment

    • Cor Ligthert

      #3
      Re: Question

      Dib,

      Winform projects create exe files
      Webform project create dll files
      You can as well create dll files which are class librarys.

      However a dll in dotnet is not a classic dll it is forever in an
      intermidiate language, not processable by a not dotNet program.

      I hope this helps?

      Cor


      Comment

      • Dib

        #4
        Re: Question

        Thanks for the information

        Dib

        "Sijin Joseph" <sijinNOSPAMdot net@hotmail.com > wrote in message
        news:%23kFkTTlt EHA.1088@TK2MSF TNGP12.phx.gbl. ..[color=blue]
        > Yes it is certainly possible, if you are using VS.Net then just create a
        > new Class Library project and the output will be a .dll, if you are
        > using the .Net SDK then compile using /target:library option to create a
        > library.
        >
        > Check out this site to get started with .Net
        > http://msdn.microsoft.com/netframework/
        >
        > Sijin Joseph
        > http://www.indiangeek.net
        > http://weblogs.asp.net/sjoseph
        >
        > Dib wrote:[color=green]
        > > Hi,
        > >
        > > I am ne wto dot net. Can some one give me an in sight on this matter.
        > > Can you create a dll file through DOT net?
        > >
        > > just like in VB you can create a project then you compile it to be .dll
        > > extention. Is this possible in DOT net?
        > >
        > > Thanks
        > > Dib
        > >
        > >[/color][/color]


        Comment

        • Dib

          #5
          Re: Question

          Thanks for the information

          Dib

          "Cor Ligthert" <notmyfirstname @planet.nl> wrote in message
          news:eZpjXRotEH A.2536@TK2MSFTN GP11.phx.gbl...[color=blue]
          > Dib,
          >
          > Winform projects create exe files
          > Webform project create dll files
          > You can as well create dll files which are class librarys.
          >
          > However a dll in dotnet is not a classic dll it is forever in an
          > intermidiate language, not processable by a not dotNet program.
          >
          > I hope this helps?
          >
          > Cor
          >
          >[/color]


          Comment

          Working...