Tag: .net

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...
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

The origin of GetHashCode in .NET

ASP .NET CORE, Frameworks, Languages & Coding • One Comment

This article is devoted to the GetHashCode method and the GetHashCode implementation in the .NET Framework. The article also...
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

Effective Use of Classes in .NET

Classes, Languages & Coding

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...
Read More

C# Powerful String Functions

Basics of C#, Languages & Coding

The .NET Framework provides a set of powerful string functions. These building blocks can be used to write more complex algorithms for...
Read More
Close