CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Dec 2004
    Posts
    24

    How to read a dll.

    Hi,

    This is what i need to do :

    I need to access the file offset.dll that is placed in the folder c:\Setup\.
    And query for a string with ID = 21 placed in offset.dll.

    Would the file.open and file.read method work for dlls? Or is there any other options.

    Thanx,
    Brian.

  2. #2
    Join Date
    Jan 2001
    Posts
    22

    Re: How to read a dll.

    If the file is really a text file disguised as a .dll, then yeah, it should work.

    If the file is really a C# dll, then nooooo, you will need to reference the file, create the object you need and whatnot.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured