[Solved] How Do I Add DriveInfoEx.Dll In Project [closed]


Firstly: Go to the page of the project, which implements the DLL
Then download the demo project (you need an account to do that), after you downloaded the archive, extract the content (or the DLL only).
Right click on References –> Add New Reference…, Browse, then search for the DLL and reference it with a double click or click on open.
Mark the DLL (Namespace) in the Reference folder and set Local Copy to True.
This will make sure the DLL is always in the same folder as the executable file.
To use the DLL in your code import the namespace via using XYZ.XYZ;

1

solved How Do I Add DriveInfoEx.Dll In Project [closed]