Tag: c#

Comparing Objects by Value. Part 2. Implementation Notes of the Equals Method

Computer Environment, Languages & Coding

In the previous article, we have reviewed a general concept of implementing a minimum set of...
Read More

Comparing Objects by Value. Part 1. Beginning

Computer Environment, Languages & Coding

It is a common fact that the .NET object model, as well as other software program platforms, allow comparing objects by reference and by...
Read More

Composition and Interfaces in OOP World

Computer Environment, Languages & Coding

In the object-oriented programming world, the concept of inheritance has been criticized for a long time. There are quite a lot of...
Read More

Sorting in .NET

ASP .NET CORE, Languages & Coding • 4 Comments

Sorting is a typical task each programmer should be aware of. That’s why this article is...
Read More

Aspects of Strings in .NET

Database administration, Work with data

The string data type is one of the most significant data types in any programming language. You can hardly write a useful program without...
Read More

StringBuilder: the Past and the Future

Classes, Languages & Coding

In the previous article, I elaborated on peculiarities of string concatenation. In this article, I would like to consider the StringBuilder...
Read More

Foreach or For – That is the Question

ASP .NET CORE, Languages & Coding, Performance Tuning • 2 Comments

The discussion about the preference difference between FOREACH and FOR is not new. We all know that...
Read More

Long Arithmetic from Microsoft

Computer Environment, Languages & Coding • One Comment

It is known, a computer can operate numbers with a limited number of bits. As a rule, we are accustomed to work with the 32-bit and 64-bit...
Read More

Is string operator “+” so simple?

Database administration, Work with data • 3 Comments

Introduction A string data type is one of the fundamental data types, along with numeric (int, long, double) and logical (Boolean) ones....
Read More

Under the Hood of Stopwatch

Classes, Languages & Coding

Introduction As all developers, I often need to measure the execution time of my own (and not only...
Read More
Close