Giver Kdkdot-net.hashnode.dev·Feb 6, 2025.NET Version ManagementDownload SDKs Download the latest .NET SDK from its official site and install it. Now, verify the installation with the command: dotnet --list-sdks Visual Studio Installer To start creating new projects with the latest .NET, update the visual studio...dotnet-version
Milan Jovanovićmilanjovanovic.hashnode.dev·Jan 31, 2025Overriding Default HTTP Resilience Handlers in .NETIntroducing .NET 8 resilience packages built on top of Polly has made it much easier to build robust HTTP clients. These packages provide standard resilience handlers that you can easily attach to HttpClient instances. They implement common patterns ...45 readsdotnet
Emmanuel Gabrielcodease.hashnode.dev·Jan 7, 2025Creating an Azure SQL Database, with .Net6 Rest APISummary: in this tutorial, you will learn how to create a single Azure SQL Database single database, and connect it to your .Net6 Rest API using the Azure SQL single database as a datastore. Azure SQL Databases is a platform-as-a-service (PAAS) offer...1 likeAzure
Ehsan Mirsaeedimirsaeedi.hashnode.dev·Jan 4, 2025CPU and Memory monitoring in .NET(Just as a reminder to myself: this is the first post after my child was born, and now I'm writing while he is cooing and speaking to us in his own baby language.) Recently, I worked on implementing a throttling mechanism for our service at Microsoft...dotnet
Priyesh Singhdotnetdevelopment.hashnode.dev·Dec 31, 2024Everything GraphQL + DotNet CoreWhy we need GraphQL? GraphQL is a query language for APIs which provides a more efficient and flexible alternative to REST. It was originally built by Facebook but it’s open-sourced and is maintained by a large community. To design web APIs, Restful ...GraphQL
Ahamad Basha NSintro-to-c-net-core.hashnode.dev·Dec 12, 2024Jagged Arrays in C#A jagged array is an array of arrays, where each element can have a different length. This flexibility allows you to create arrays with varying dimensions. int[][] jaggedArray = new int[3][]; // Declares a jagged array with 3 rows // Initialize each...C#
Ahamad Basha NSintro-to-c-net-core.hashnode.dev·Dec 12, 2024Single and Multi-Dimensional Arrays in C#Arrays in C# are a fundamental data structure used to store a collection of elements of the same data type. They provide a convenient way to organize and manipulate data. There are two main types of arrays in C#: 1. Single-Dimensional Arrays 📈 A s...single dimensional arrays
Ahamad Basha NSintro-to-c-net-core.hashnode.dev·Dec 10, 2024Write and Read Console1. Console.WriteLine() This method is used to print a specified text or variable value to the console window. Console.WriteLine(value); // Print a message to the console Console.WriteLine("Hello, world!"); // Print the value of a variable ...readkey
Ahamad Basha NSintro-to-c-net-core.hashnode.dev·Dec 7, 2024var and dynamic KeywordsIn-Depth Explanation of var and dynamic Keywords 𝐯̲𝐚̲𝐫̲ ̲🦸̲̲ 𝐚̲𝐧̲𝐝̲ ̲𝐝̲𝐲̲𝐧̲𝐚̲𝐦̲𝐢̲𝐜̲ ̲🦹̲̲ ̲𝐊̲𝐞̲𝐲̲𝐰̲𝐨̲𝐫̲𝐝̲𝐬̲ When you get tired of declaring data types of variables. And you don't want to stress on small things and focus on the...coding tips
Ahamad Basha NSintro-to-c-net-core.hashnode.dev·Dec 6, 2024𝗖# 𝗢𝗽𝗲𝗿𝗮𝘁𝗼𝗿𝘀:Operators are symbols that perform specific operations on operands. They help us manipulate data and perform calculations. C# provides a rich set of operators to manipulate data. 𝗔𝗿𝗶𝘁𝗵𝗺𝗲𝘁𝗶𝗰 𝗢𝗽𝗲𝗿𝗮𝘁𝗼𝗿𝘀: (Addition): Adds two operands...𝗧𝗲𝗿𝗻𝗮𝗿𝘆