June 3, 2023

Guided project – Develop foreach and if-elseif-else structures to process array data in C#

Gain experience developing a console app that implements arrays, foreach loops, and if statements to achieve app specifications.
June 3, 2023

Guided project – Work with variable data in C#

Guided project – Work with variable data in C#
June 3, 2023

Challenge project – Develop foreach and if-elseif-else structures to process array data in C#

Demonstrate your ability to update a console app that implements arrays, foreach loops, and if statements in response to a user requested feature update.
June 2, 2023

Implement the Visual Studio Code debugging tools for C#

This module explores the tools and processes used to debug C# console applications in Visual Studio Code. Hands-on activities provide experience using breakpoints, conditional breakpoints, and […]
June 1, 2023

Optimize your web applications by caching read-only data with Redis

Use Redis caching in Azure to reduce the load on databases. Apply different caching architectures to support larger loads in distributed and high-volume environments.
May 22, 2023

Enabling CORS in Locally Running In-Process Azure Function

In this post, let’s see how we can enable CORS in locally running In-Process Azure Function.  I had a simple In-Process HTTP Trigger Azure Function that exposes […]
May 10, 2023

Visual Studio 2022: Apply File Scoped Namespaces using Code Cleanup Profile

In this post, let’s see how we can apply File scoped namespaces to all the existing C# files using a Code Cleanup Profile. Imagine you have […]
April 27, 2023

C# 12.0 Preview: Primary Constructors for Classes and Structs

In this post let’s have a look at “Primary Constructors for Classes and Structs”, a preview feature in C# 12.0. You can try this out with […]
April 10, 2023

Azure Kubernetes Service: Enable Ingress using Application Gateway

In this post, let’s see how we can enable ingress in an AKS cluster using Application Gateway. We can easily do that using Application Gateway Ingress Controller […]
March 17, 2023

Visual Studio 2022: Web API Endpoint Explorer

In this post, let’s have a look at this nice feature that is available in Visual Studio 2022 and that is Web API Endpoint Explorer. I […]
March 8, 2023

Entity Framework Core and Connection Resiliency

In this post, let’s see some built-in features in EF Core that supports Connection Resiliency. For example, if the connection to the database dropped while executing […]
February 22, 2023

System.Text.Json: Configure Polymorphism using the Contract Model

In this post let’s see how we can configure Polymorphism using the Contract Model in System.Text.Json. You can also configure Polymorphism using attributes (How to configure Polymorphism using […]