I am programming in Lua 5.0.2
script language and I want to load my own C# DLL
and call it's function in my Lua code.
This function is such as below:
string Concat(string S1, string S2)
{
return S1+S2;
}
Is there anyway to reach this goal? Help me Please.