Xamarin C# 应用程序是否可以在不需要 Mono 编译器的情况下运行?

Does Xamarin C# apps work without requiring Mono compiler?

我的意思是,如果我将 Xamarin 开发的 apk 发送给我的朋友安装,他是否需要在他的 phone 上安装 Mono 框架,或者它会安装并且 运行 没有任何第 3 方应用程序?

On Android, Xamarin ships a fully functional implementation of the .NET runtime, called Mono, bundled with your app so that your code executes with all of the power of C# and .NET, including JIT-compilation, memory management, reflection, and the .NET base class libraries.

Source

是的,不需要在您朋友的设备上安装 Mono 就可以正常工作。