What are the benefits of explicit compilation?

Technology CommunityCategory: .NET CoreWhat are the benefits of explicit compilation?
VietMX Staff asked 3 years ago

Ahead of time (AOT) delivers faster start-up time, especially in large applications where much code executes on startup. But it requires more disk space and more memory/virtual address space to keep both the IL and precompiled images. In this case the JIT Compiler has to do a lot of disk I/O actions, which are quite expensive.