I do not think that DotNumerics can solve LP problems on their own. As far as I interpret the documentation, Nelder-Mead (simple spung method) is used only to solve simple problems with minimization, not problems with LP.
The last time I decided to use LP in C #, I used the .net wrapper for LP_Solve .
If you download the lpsolve package, it should come with an example for .net. You can also connect it to the basics of microsoft solution ( see here ), but I think that MSF has some licensing problems and you cannot use it freely for commercial applications. But, nevertheless, MSF can be interesting to check.
Again, you can just use lpsolve without MSF. Lpsolve is a pretty good LP solver if you have no problems with large sizes. Then it can be worth it, at least for alternatives, and compare performance / adaptability to your specific problem.
source share