Quote:
Originally Posted by TheEnlightenedFlorist
I have attached them. Unfortunately, they are in separate Visual Studio solutions (and not very well written, in my opinion).
Also, it turns out there's a much easier way to reference the dll than using reflection.
Code:
//$reference IL2ServerMasterLibrary.dll
using IL2ServerMasterLibrary;
Then...
Code:
ServerMaster master = new ServerMaster("pass", 27340);
string[] command = master.popCommand();
|
Thanks! I'll delve into the code this weekend.