c charp
Добавлено: 26 июн 2022, 11:08
install
apt-get install mono-mcs
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
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");
}
}
}
root/kali:~/ mcs test.cs
root/kali:~/ ls
test.cs test.exe