.net standard is cross platform like .net Core?

This question already has an answer here:

  • .NET Standard vs .NET Core 6 answers

  • .NET Standard is a specification. A library compiled for a specific .NET Standard version can be used in different .NET Standard implementations.

    The concept of cross-platform is not strictly bound to .NET Standard, but is inherent of the frameworks that implements it in a specific version.

    A platform is generally speaking a combination of:

  • OS (Windows, Linux, Android, iOS)
  • Runtime (.NET Framework, .NET Core, JavaVM, etc.)
  • Architecture (x86, x64, ARM, etc.)
  • So .NET Standard is as cross-platform as its implementations. Look at them and then you may certainly say if it is multi-platform or not.

    链接地址: http://www.djcxy.com/p/81894.html

    上一篇: 有没有办法迭代字典?

    下一篇: .net标准是.net核心的跨平台吗?