design

What is the .Net Core ?

April 3, 2024

. This platform supports software development for web applications, microservices, cloud-based applications, IoT (internet of things) devices.

.NET Core emerged as an alternative to the .NET Framework and offers a lighter, faster and more modular approach. . NET Core was developed with open source community support and has become a project contributed by other companies and individuals in addition to Microsoft.

. NET Core can be used with multiple programming languages ​​(C#, F#, Visual Basic) and is supported by various development tools ( such as Visual Studio, Visual Studio Code, JetBrains Rider ). Additionally, applications developed with .NET Core can be easily deployed and managed with container technologies such as Docker.


Official Website https://dotnet.microsoft.com/en-us/

.Net Core is a powerful Framework. And it has millions of developers. Roof allows you to develop projects quickly.

.Net Core uses the c# programming language Below is a sample Rezor Page code

cs

index.cshtml
@page
@model IndexModel
@{
    ViewData["Title"] = "Home page";
}

<div class="text-center">
    <h1 class="display-4">Welcome</h1>
    <p>Hello, world! The time on the server is @DateTime.Now</p>
</div> 

The code example given above works with the Rezor Page page infrastructure. Rezor Page is a customized page structure for .net Core. It uses the MVC Controller mechanism.


4 + 7 =