Using the Wrapper in Projects
The Optimizer functionality is exposed through the XPRS and XPRSprob classes, which reside in the Optimizer namespace, which resides in the xprsdn.dll assembly.
Each source file that uses the Optimizer should import the Optimizer namespace and should be compiled with a reference to xprsdn.dll.
To add a reference to a Visual Studio .NET project, select Add Reference from the Project menu. Click the Browse button and locate xprsdn.dll in the XpressMP\bin folder.
Users of the .NET command line compilers, for example,
csc for C#, or
vbc for Visual Basic, can add a reference with the
/reference option:
csc /reference:<path to xprsdn.dll> <your source file>