Ranges and indices in C# 8.0

Hello friends, Today we will go through another C# 8 feature called Ranges and indices Range and Indices are the great additions in the C# world. Due to these constructs, handling indexes have become fairly easy. Below is a summary of the changes in this feature. System.Index represents an index in an array or sequence.… Continue reading Ranges and indices in C# 8.0

Published
Categorized as .NET/C#

String and StringBuilder in Design and Action

Hello Friends, Lets have a look at old yet relevant point about String and String Builder. Both constructs are meant to manipulate the strings but in their own way. A string (namespace: System.String ) is a sequential collection of Unicode characters that represent text. A String object is immutable (read-only) and a sequential collection of… Continue reading String and StringBuilder in Design and Action