- C# and .NET Core Test Driven Development
- Ayobami Adewole
- 257字
- 2021-06-25 22:00:31
.NET Standard
.NET Standard is a Microsoft-maintained set of specifications and standards that all .NET platforms must adhere to and implement. It formally specifies the APIs that are meant to be implemented by all variants of the .NET platform. There are currently three development platforms on the .NET platform—.NET Core, .NET Framework, and Xamarin. The .NET platform is needed to provide uniformity, and consistency, and makes it easier to share codes and reuse libraries on the three variants of .NET platform.
.NET platform provides the definition of a set of uniform Base Class Libraries APIs to be implemented by all .NET platforms, to allow developers to easily develop applications and reusable libraries across the .NET platforms. Currently in Version 2.0.7, .NET Standard provides new APIs that were not implemented in Version 1.0 of .NET Core but are now implemented in Version 2.0. More than 20,000 APIs have been added to the runtime components.
Additionally, .NET Standard is a target framework, which means that you can develop your application to target a specific version of .NET Standard, allowing the application to run on any .NET platform that implements the standard, and you can easily share codes, libraries, and binaries among the different .NET platforms. When building your application to target .NET Standard, you should know that higher versions of .NET Standard have more APIs available for use but are not implemented by many platforms. It is always recommended that you target a lower version of the standard, which will guarantee that it's implemented by many platforms:

- Vue.js 3.x快速入門
- 程序員數學:用Python學透線性代數和微積分
- 趣學Python算法100例
- Web Application Development with R Using Shiny(Second Edition)
- Learning Neo4j 3.x(Second Edition)
- Magento 1.8 Development Cookbook
- Getting Started with SQL Server 2012 Cube Development
- Unreal Engine 4 Shaders and Effects Cookbook
- BeagleBone Black Cookbook
- Visual Basic程序設計上機實驗教程
- Hands-On GUI Programming with C++ and Qt5
- SciPy Recipes
- Mastering VMware Horizon 7(Second Edition)
- 高質量程序設計指南:C++/C語言
- Android開發權威指南(第二版)