Is there any difference in performance when running two executables with mono in linux, if:
1) the one executable has been compiled from c# source code previously in windows (e.g.VS).
2) the other executable has been compiled from the same source with gmcs in linux.
It shouldn’t matter from mono runtime’s perspective since they are both valid IL codes (assuming compilers are bug-free).
There might be a performance difference which can be attributed to the level of optimization done by the C# compiler.