Aspects of Strings in .NET
The string data type is one of the most significant data types in any programming language. You can...
StringBuilder: the Past and the Future
In the previous article, I elaborated on peculiarities of string concatenation. In this article, I would like to consider the StringBuilder...
The origin of GetHashCode in .NET
This article is devoted to the GetHashCode method and the GetHashCode implementation in the .NET Framework. The article also...
Foreach or For – That is the Question
The discussion about the preference difference between FOREACH and FOR is not new. We all know that...
Long Arithmetic from Microsoft
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...
Is string operator “+” so simple?
Introduction A string data type is one of the fundamental data types, along with numeric (int, long, double) and logical (Boolean) ones....
Under the Hood of Stopwatch
Introduction As all developers, I often need to measure the execution time of my own (and not only...
Effective Use of Classes in .NET
When you need to learn a programming language, you buy a book. From books, we learn basics of the language and how to program, but this is...
C# Powerful String Functions
The .NET Framework provides a set of powerful string functions. These building blocks can be used to write more complex algorithms for...