What is WebAPI WebAPI in .NET Core is used for creating RESTful services.WebAPI in .NET Core is a class which derives from the ControllerBase class.This is unlike MVC controller which derives from Controller class.Controller class adds support for working with views. Different return types we can return the following from the controller action method: Specific […]
dotnet-core
Check installed versions of .NET Core sdk and runtime
The dotnet is a tool for working with dotnet core applications.You can perform various useful tasks using this.There are two different concepts in .NET Core,runtime and sdk.The sdk includes everything to develop,run and publish applications wile runtime just allows to run the applications. To check if dotnet core is installed you can use the following […]