I have to call a win32 dll function
int func1( int arg1, unsigned char **arg2, int *arg3);
and i need wrapped in c# as
public extern int fuc1(int arg1, out IntPtr arg2, out IntPtr arg3);
and i called it from a c# application as
int arg1;
IntPtr arg2 = IntPtr.Zero;
IntPtr arg3 = IntPtr.Zero;
func1(arg1,out arg2,out arg3);
Is the function declared in the c# wrapper as well as called in C# test app Correct ?
Now i need to store the arg2 in a text file. How to do that.
Got answer from Hans and i wrote it in a file using
System.IO.StreamWriter(@Application.StartupPath + "\Filename.txt");
file.WriteLine(arg2);
file.Close();
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…