I want to call a C function from C#. C function is inside a dll. The function I want to call is declared as follows:
int raxml_main(int argc, char*[] argv);
The problem is I am new to C# and I don not know how to convert string[] args to char*[] argv. Is it possible? Any idea?