View Single Post
  #6  
Old 07-29-2011, 06:19 AM
CaptainDoggles's Avatar
CaptainDoggles CaptainDoggles is offline
Approved Member
 
Join Date: Jun 2011
Posts: 1,198
Default

Quote:
Originally Posted by TheEnlightenedFlorist View Post
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.
Reply With Quote