static void ExecuteExternalX++File(Args _args)
{
TextBuffer textBuffer;
XppCompiler xppCompiler = new XppCompiler();
Source source;
textBuffer = new TextBuffer();
textBuffer.fromFile(@"C:\\Users\\toto\\Desktop\\codeX++file.txt");
source = textBuffer.getText();
if (!xppCompiler.compile(source))
error (xppCompiler.errorText());
runbuf(source);
}