News

Take advantage of String.Create to create strings with no allocation overhead and improve the performance of your .NET 6 applications. String handling is one of the most performance-critical areas in ...
The characters in a string have indices that run from 0 to string.length() - 1. The method charAt() returns the character at a specified index. The boolean operator ( == ) returns true only if the two ...
Take advantage of these best practices when working with strings in .NET Core for the optimal performance of your applications. Two popular classes that you will use frequently when working with ...
There seems to be an issue with inheriting and overriding the ToString() method in record types in .NET. When ToString() is overridden in a base record class, it is not inherited correctly in derived ...
This is a collection of string extension methods that I have been in need of many a time, so I bundled them in a nuget package and published the code here. They are designed to be "ease-of-life" and ...
Community driven content discussing all aspects of software development from DevOps to design patterns. To get information about an object in Java, you typically go through a public method. To get the ...
Learn the best way to combine strings in VB.NET Your email has been sent Irina Medvinskaya explains why you should usually opt for using the & operator over the + operator to combine strings. She also ...