.net core 6 String Improvements
It is an inalienable fact of software engineering that Strings are immutable. Every time you “mutate” a string, a new one is created. If for example, you want to concatenate two strings, the result will be that within memory, the first string, second string, and resulting string will all exist
|
1 2 3 |
var a = "Hello "; var b = "World!"; var c = a + b; |
Even if you don’t […]
.net core 6 String Improvements Read More »