Null checking is important part of developing quality code, Without it Code with throw NullReferenceException Most common way to check for nulls is using If, consider below code public class P...
Say "Hello" To Blazor WebAssembly
History In mid-April 2019, Microsoft released Blazor, which allows client-side code with C# (no JavaScript required), allows Developers to build single-page apps using .NET and C# instead of Jav...
C# 9 New Features
Microsoft build 2020, Mads Torgersen, Program Manager for the C# Language and Dustin Campbel, a principal software engineer on the .NET Developer Experience team showed C# 9.0 features that will ...
Sharing Data Between Angular Components using Services
Welcome to Part-2 of 2-series Sharing Data between components in Angular Part 1: Sharing Data from Parent to Child Component and Child to Parent Part 2: Sharing Data between non-parent-chi...
Sharing Data Between Angular Components
As Angular Project Grows and you start to divide your code into multiple components, there will be need to pass data around between components, Now these components could be related or not, and...