3

I've been using C# for around 1 year and a half now, and I get in touch with .NET core recently. I know a major difference between .NET core & .NET is that - .NET core supports multi-platform, but I want to understand what's the underlying implementation for .NET core to support multi-platform.

Any good and easy-to-understand tutorials / online documents? Thanks a lot!

Manglu
  • 10,744
  • 12
  • 44
  • 57
Sherry629629
  • 105
  • 2
  • 6

1 Answers1

2

Sherry,

The info is provided here:

People commonly ask how .NET Core is implemented in order to support multiple operating systems. They typically ask if there are separate implementations or if conditional compilation is used. It's both, with a strong bias towards conditional compilation.

Manglu
  • 10,744
  • 12
  • 44
  • 57