24 April 2023
Delegates in C#/.NET seemed like an “extra” thing when I first learned about them. But, as I started practicing more and more and started doing...
The post Delegates in C#: What They Are and How to Use Them? appeared first on Naveed Ul-Haq's blog.
17 April 2023
A Dictionary in C# is a collection of key-value pairs, where each key is associated with a unique value providing and easy and quick retrieval.
The post How to Create and Use Dictionary in C#? appeared first on Naveed Ul-Haq's blog.
10 April 2023
Discover the power of lists in C#! Learn how to declare, manipulate, and store data in lists with code examples in this beginner's guide.
The post Master Lists in C# – A Beginner’s Guide appeared first on Naveed Ul-Haq's blog.
4 April 2023
For Loops are used to execute a block of code for a set number of times optimizing code and saving you multiple lines of code.
The post Everything C# | For Loop in C# appeared first on Naveed Ul-Haq's blog.
22 March 2023
If you are like me and have a hard time wrapping your head around arrays in C, let me be your guide. Let’s discuss Arrays...
The post Arrays in C# – With Examples | C# .NET Tutorial appeared first on Naveed Ul-Haq's blog.
14 March 2023
In C#, string formatting is like combining different things such as strings, values, and expressions to create a cool formatted string. It’s like setting up...
The post How to Format Strings in C# appeared first on Naveed Ul-Haq's blog.
13 March 2023
While working on your projects, you will often find many ignore files and directories (like .env or any other local environment secrets, .vscode or any...
The post How to create .gitignore appeared first on Naveed Ul-Haq's blog.
7 March 2023
If you’re a developer working with ASP.NET, you’ve likely heard the term “middleware” thrown around quite a bit. But what exactly is it, and why...
The post Middleware in ASP.NET appeared first on Naveed Ul-Haq's blog.
5 March 2023
In C#, the Switch statement is the type of control flow statement to compare a single expression with multiple values. If a value matches the...
The post Switch Statement in C# .NET 6 | Explained appeared first on Naveed Ul-Haq's blog.
2 March 2023
Sometimes you need to use a module before you are ready to publish a new version of it or you are working around different files...
The post How to use the npm link appeared first on Naveed Ul-Haq's blog.