Saved Bookmarks
| 1. |
How can you differentiate ASP.NET Core from .NET Core? |
|
Answer» .NET CORE is a RUNTIME and is used for the EXECUTION of an application that is built for it. Whereas ASP.NET Core is a collection of libraries that will form a framework for developing web applications. ASP.NET Core libraries can be used on .NET Core as well as on the “Full .NET Framework”. An application using the tools and libraries of ASP.NET Core is NORMALLY referred to as “ASP.NET Core Application”, which in theory doesn’t say whether it is built for .NET Framework or .NET Core. So an application of “ASP.NET Core” can be considered as a “.NET Core Application” or a “.NET Framework Application”. |
|