Bonjour voila mon code :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
 
String chaineProcess = " /target:library /out:dll_SQL_ref.dll "+ pathSource + "\\" + fileName;
 
Process csc = new Process();
ProcessStartInfo startInfo = new ProcessStartInfo("csc.exe");
Process.Start(startInfo);
 
startInfo.Arguments = chaineProcess;
Process.Start(startInfo);
le problème est que mon fichier n'est pas compilé je ne comprend pas pourquoi ???