.NET Standard

Karim Samir
SimplifyInterview
Published in
Jul 5, 2024

Intro

The .NET Framework and .NET Core are implementations of .NET. And Both frameworks have runtime which manages the execution of applications.

.Net Standard is a specification (and not an implementation)that can be used across all .NET implementations. It is used for developing library projects only. This means if we are creating a library in .NET Standard, we can use those in .NET Framework and .NET Core.

Test

--

--