I wanted to pass three parameters to other EXE which in project startup location, I successfully did in C but I am not able to do it in C# windows application, Help me how to do it? Following C code works for it
#include<stdio.h>
#include<stdlib.h>
#include<ctype.h>
int main()
{
char query[100];
int MYNO= 0x1133aa;
sprintf(query, "demo.exe %x test.bin",MYNO);
system(query);
return 0;
}
enter code here
How do i write this code in C#, please help me :(