-
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.
-
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.