Posts

Showing posts from January, 2020

What’s the Difference Between .NET Framework, .NET Core, & Xamarin?

.NET Framework The .NET Framework is the oldest function of the common language run time. In a nutshell, this is the only Windows native implementation, which is the basis for many existing applications. As a result, the .NET framework contains existing tools and third-party libraries. In addition, many existing .NET applications are already written in .NET architecture. .NET Core .NET Core is the latest version of CLR and is currently the preferred option. This is the downside of .NET architecture with greater access to different devices. The .NET Framework is for Windows only. Net Core is cross-platform and can deploy applications on Mac or Linux. In addition, Microsoft Azure Cloud infrastructure provides more support for .NET Core applications. Because they are lighter weight than .NET Framework applications, .NET Core is fast and scalable. In fact, .NET Core applications can be easily deployed as Azure Micro Services. They are well sorted into containers like Docker. Fo...