i wrote some program in c++ that open csv file and do somthing and copy the resault to new CSV file
after compile i get exe file. when i run the exe file, its working well (create the new CSV file)
but if i try to run the exe file from c# with press on button its not working
i saw the conolse(black windows open and close) but not create the new CSV file
that what i using:
using System.Diagnostics;
Process.Start(@"C:\project\DataTreatment\DataTreatment\DataTreatment.exe");
can some help