Saved Bookmarks
| 1. |
In what situations .NET Core and .NET Standard Class Library project types will be used? |
|
Answer» .NET Core library is used if there is a requirement to increase the SURFACE area of the .NET API which your library will ACCESS, and permit only applications of .NET Core to be compatible with your library if you are okay with it. .NET Standard library will be used in case you need to increase the COUNT of applications that are compatible with your library and reduce surface area(a piece of code that a user can INTERACT with) of the .NET API which your library can access if you are okay with it. |
|