This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.
Let's talk in particular about what are method overloading and overriding. And we shall look at potential differences between these two characteristics.
Static vs Sealed Class – Comparison in an easy way
Let us know about the features of sealed class and static class in C# and summarize the important differences - static vs sealed class
Private and Static Constructors in C# Simplified
In this article, we discuss in detail about the concepts of Private and Static constructors in C# programming language and how they are useful.
Static Constructor vs Singleton explained in a simple way
What are the major differences between a class with a static constructor and a Singleton class in C# - explained with examples.
Simple way to join multiple async calls in C#
Mark the method as async to take the execution to a separate thread. The method returns a Task which represents the process that the method is executed on.
What is the difference between Finally and Finalize?
Finally is a block that is used within exception handling. Finalize is a method in conjunction with the Garbage Collection.
How to create a Dictionary with a Complex Type as a Key?
Yes you can. Dictionary can be created with a Complex Type as a Key and a simple type as a value.
How to Design Collections Allowing Duplicate Keys?
To design a data structure that can hold key-value pairs with a possible duplicate keys, we can go with one of the following.
.NET Basics: Understanding CLR and CTS Simplified
CLR provides the necessary runtime environment and services while CTS is responsible for how types are defined and managed.