Hacker News new | ask | show | jobs
by jimmaswell 3626 days ago
The C# is entirely standard. It's compiled to normal IL bytecode. You can call any other IL code from it in DLLs as well, compiled in F# or VB.NET etc. You can even use a newer C# version than their supplied compiler supports if you set it up so you build the IL yourself since it uses the same IL. You lose a few conveniences like opening scripts directly from the editor but it works well otherwise if you want the new C# features. I believe it's also a bit more efficient that way to some degree.