Cannot execute binary file on CentOS amd64
I am trying to run a simple program on CentOS. The program: using System; namespace helloworld { class Program { static void Main(string[] args) { Console.WriteLine("Hello World!"); returnHello(); } static string returnHello() { return "hwdy ha"; } } } My…