What’s the difference between RyuJIT and Roslyn?

Technology CommunityCategory: .NET CoreWhat’s the difference between RyuJIT and Roslyn?
VietMX Staff asked 3 years ago
  • Roslyn is the compiler that compile your code (C# or VB) to IL.
  • RyuJIT is a Just In Time compiler that compile your IL to a native code.

Both of them are now open source.