19 June 2023
Choosing between a Dictionary and a List in C# depends on the specific requirements of your application.
The post C# Dictionary vs. List: Choosing the Right Data Structure appeared first on Naveed Ul-Haq's blog.
13 June 2023
Polymorphism is the ability of an object to take on many forms. In C#, polymorphism is achieved through inheritance and interfaces. Inheritance allows derived classes...
The post What is Polymorphism in c# appeared first on Naveed Ul-Haq's blog.
12 June 2023
In C#, the ‘using’ statement provides a convenient way to ensure the proper disposal of resources, such as file handles, database connections, or network streams....
The post ‘using’ Statement in C#: Properly Managing Resources appeared first on Naveed Ul-Haq's blog.
5 June 2023
Choosing between ASP.NET vs Node.JS depends on various factors. Learn which one is the best for your project.
The post ASP.NET vs Node.JS: Choosing the Right Framework for Web Development appeared first on Naveed Ul-Haq's blog.
29 May 2023
In C#, the DateTime type represents date and time values. Formatting DateTime values allows you to customize the representation of dates and times according to...
The post C# DateTime Format: Customize Date and Time Representation appeared first on Naveed Ul-Haq's blog.
22 May 2023
String Interpolation in C# is a feature introduced that allows you to embed expressions directly within a string with the $ symbol.
The post C# String Interpolation: Explained appeared first on Naveed Ul-Haq's blog.
8 May 2023
In C#, access modifiers are used to define the accessibility of types and their members (variables and functions) in an assembly.
The post C# Access Modifiers: Controlling Accessibility of Members appeared first on Naveed Ul-Haq's blog.
1 May 2023
Delegates are used to create references to different methods in C#. Creating these references aims to make the methods accessible in an event-driven approach. There...
The post Action and Func Delegates in C# appeared first on Naveed Ul-Haq's blog.
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.