And NGEN is a standard component of the .NET SDK since the beta days.
So AOT compilation has been part of the default tooling since ever.
I would say that the C family languages are traditionally native of most operating systems [1] as they are polyglot and can directly speak whatever C ABI dialect is used there; they also work with the native platform tools.
C# is really native of the .Net platform and although it can be AoT compiled it either can't talk directly with Win32 or the interfacing is not seamless. Also it has its own set of tools.
Android and iOS are interesting because although they are clearly unix derivatives, the unix interface is not the primary interface; so arguably C and C++ are not really native there while Java and ObjectiveC/Swift respectively are.
[1] Or to be fair, of unix and any operating system that can be made to look like unix (Windows).
Well then Rust, D, Swift, Go, Rust, Haskell, OCaml are not native by that measure.
C# integration with Win32, COM and UWP (aka COM reborned) is painless comparing with any of them.
edit: to be clear, using 'compiles to object code' as the definition of Native, is both a misuse of the word, and meaningless as it is a implementation detail that can change easily and bound to be obsolete quickly.
Bonus points if it is a UWP one.
NGEN
https://docs.microsoft.com/en-us/dotnet/framework/tools/ngen...
AOT Compilation for Windows 8.x store apps, based on Singularity's Bartok compiler
https://channel9.msdn.com/Events/Build/2012/3-005
https://channel9.msdn.com/Shows/Going+Deep/Mani-Ramaswamy-an...
AOT Compilation for Windows 10 store apps, using Visual C++ backend
https://channel9.msdn.com/Shows/Going+Deep/Inside-NET-Native
https://docs.microsoft.com/en-us/dotnet/framework/net-native...