C# Data structures
Difference between arrays and dictionaries in C#

When it comes to performance in C#, the choice between an array and a Dictionary can have a significant impact on the efficiency of your code. In this article, we'll explore the differences in terms of performance and complexity...

  • January 15, 2022
C#
Why we use "dynamic" objects in c#

The "dynamic" keyword in C# is a powerful feature that allows developers to work with objects whose types are not known at compile-time. This feature can be especially useful in situations where the type of an object is not known...

  • January 15, 2022
Categories