Search found 4 matches
- 17 Jul 2008, 02:56
- Forum: AI
- Topic: AI with C# (again)
- Replies: 17
- Views: 3479
Re: AI with C# (again)
I recommend you build the dll in C++/CLI and call into C# from there. Spring will think it's loading a C DLL (and will need no modifications), and the compiler handles and the thunking, loading of the CLR, etc. To accomplish this in visual studio you'll want to have two projects in one solution. One...
- 04 Jul 2006, 03:33
- Forum: AI
- Topic: AAI 0.63 released (win + linux version included)
- Replies: 242
- Views: 43084
debugger
What was wrong with the debugger? (would help other devs with the same problem). Am looking forward to the imminent release :).
- 06 Jan 2006, 05:09
- Forum: AI
- Topic: debugging the whole thing
- Replies: 24
- Views: 3187
- 05 Jan 2006, 07:29
- Forum: AI
- Topic: debugging the whole thing
- Replies: 24
- Views: 3187
People that don't have a debugger can get a decent one from MS. These are very important tools that tell you what line caused the crash, the value of all the variables, and what function calls led to the code that crashed (stack traces). http://www.microsoft.com/whdc/devtools/debugging/default.mspx ...