Страница 1 из 1

c charp

Добавлено: 26 июн 2022, 11:08
ya
install

apt-get install mono-mcs

Код: Выделить всё

using System;
namespace test {
   class test{
      public static void Main(string[] args) {
         System.Console.WriteLine("C# app Compiled on Kali Linux");
      }
   }      
}
Then, open the Terminal and hit the following commands to compile the code.

root/kali:~/ mcs test.cs
root/kali:~/ ls
test.cs test.exe