Introduction :
.NET Core is named “Core” since it contains the core features from the .NET Framework, for both the runtime and framework libraries., .NET Core and the .NET Framework share the GC, the JIT and types such as String and List.
If you’re a .NET developer who needs to build and release something fast and you don’t have time to learn .NET Core, then the .NET Framework is your choice. .NET Core does have a learning curve.
.NET Core was created so that .NET could be open source, cross platform and be used in more resource-constrained environments.
.NET Core is better suited for cross-platform needs., .NET Core apps are supported on Windows, Linux, and macOS. Microsoft’s popular open source code editor, Visual Studio Code, is supported on Windows, Linux and macOS. VS Code supports modern needs of code editors including IntelliSense and debugging. Most third-party editors, such as Sublime and Emacs.
.NET Framework
- The .NET Framework is the first implementation of .NET which works on Windows only.
- Its source code is public but Microsoft doesn’t accept third party contributions for it.
- it has top development framework for windows which include Windows Forms and WPF.
- doesn’t support the in-app deployment model.
- Although it can be used with a docker container, its image size is large and can only be deployed on Windows containers.
.NET Core
- .NET Core is the latest implementation of .NET which runs on Windows, Linux, and macOS.
- Its open-source and Microsoft accepts third party contribution to .NET Core
- It supports desktop frameworks like Windows Forms and WPF from version 3.0
- It is the best choice to work with docker containers
- it supports the in-app deployment model
Developers use the .NET framework to create Windows desktop applications and server based applications. This includes ASP.NET web applications. .NET Core is used to create server applications that run on Windows, Linux and Mac. It does not currently support creating desktop applications with a user interface. Developers can write applications and libraries in VB.NET, C# and F# in both runtimes.
.NET Core is a better choice if you:
- when need for high performance and scalable systems.
- While developing applications for cross-platform
- For the development of microservices
- When we want to use Docker containers
- Performance and scalability were two major key focus areas when .NET Core was developed. .NET Core and ASP.NET Core are the top performing web frameworks according to some benchmarks.
- .NET Core versions play well together. You can easily run multiple versions and apps side by side on the same machine.
.Net Framework is a better choice if you:
- When want to target only Windows
- Do not have time to learn a new technology.
- Do not want to deal with continuous upgrades and changes
- Need a stable environment to work in
- Already have a pre-configured environment and systems
SEE MORE
- Auto Refresh Partial View in ASP.NET MVC
- What is ASP.NET Core
- Difference between TempData keep() And Peek() in Asp.Net MVC
- Difference between viewbag,viewdata and tempdata in asp.net mvc
- ASP.NET MVC With AngularJS
- Retrieving Data Using Form Collection and Inserting Into ASP.Net MVC
- MVC CRUD Operations Using Entity Framework
- Search Functionality in ASP.NET MVC
- How to create a User Registration page using asp.net mvc
- Store Multiple Checkbox state from cookie using Jquery
- Cascading Dropdownlist using Ajax in Asp.Net Mvc with city state country
- Insert, Update, Delete In GridView Using ASP.Net C#
- Binding Dropdownlist With Database In Asp.Net MVC
- Search and Filter data in Gridview using Asp.net MVC
- Select Insert, Update And Delete With ASP.NET MVC
- Display Data in GridView Using Asp.net MVC
- Validation in ASP.NET MVC Razor view
- CRUD Operation Using 3-Tier Architecture In ASP.NET
- How to get Connection String from Web.Config in Asp.Net C#
- Login page using 3-Tier Architecture in ASP.Net
- Asp.Net Image Upload in 3-Tier Architecture and store in sql database
2 Comments