assembly and portable executable

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

    assembly and portable executable

    what is an assembly and how does it related with portable executable in
    ..net architecture?

  • Mattias Sjögren

    #2
    Re: assembly and portable executable

    [color=blue]
    >what is an assembly[/color]

    See
    Find official documentation, practical know-how, and expert guidance for builders working and troubleshooting in Microsoft products.


    [color=blue]
    >how does it related with portable executable in
    >.net architecture?[/color]

    An assembly is made up of one or more modules (usually with the file
    extension .dll, .exe or .netmodule), and the modules use the PE file
    format.


    Mattias

    --
    Mattias Sjögren [C# MVP] mattias @ mvps.org
    http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
    Please reply only to the newsgroup.

    Comment

    • pooja

      #3
      Re: assembly and portable executable

      what will happen when we create a windows project(myproj) in vb.net
      having one form . now when i compile this project then what will
      happen? will an assembly by name mypro is created or not? and will PE
      be created if yes then what does it contain?

      I have read that when .net project is complied , it is converted into
      IL . PE will contain this IL and metadata. now I want to ask that if PE
      contains IL and metadata then what does an assembly contain?





      Mattias Sjögren wrote:
      [color=blue][color=green]
      > >what is an assembly[/color]
      >
      > See
      > http://msdn.microsoft.com/library/en...assemblies.asp
      >
      >[color=green]
      > >how does it related with portable executable in
      > >.net architecture?[/color]
      >
      > An assembly is made up of one or more modules (usually with the file
      > extension .dll, .exe or .netmodule), and the modules use the PE file
      > format.
      >
      >
      > Mattias
      >
      > --
      > Mattias Sjögren [C# MVP] mattias @ mvps.org
      > http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
      > Please reply only to the newsgroup.[/color]

      Comment

      Working...