Hello,

I am not sure where to post this question since it's kind of a crossover question

I currently have a c# program (this might be a vb.net program in the future) that calls a c++ dll

using the following in the c# program

[DllImport("foo. dll")]

public static extern int ChangeIt(string strId, string strTheValue);


In c++ I have
...