ID:1716835
 
Keywords: byond, c, call, dll
Code:
DM File:
var/L = list("")
usr<<call("TestDLL.dll","ATest")(arglist(L));


C# File:
using System.IO;
namespace TestDLL
{
public static class DLLStuff
{
public static string ATest()
{
return "This is a test.";
}
}
}


Problem description:
I'm doing it wrong, and could use some guidance :)
If you want to use C#, you'll have to do something like this:
http://www.byond.com/forum/?post=1481007
Alrighty, thank you. That definitely helps :)