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
Category: .NET/C#
Default Interface Implementation in C# 8.0
Hello friends, Hope you are doing well. I am starting a series to go through the new C# 8 features one by one to cover all the new features and enhancements. C# 8 is getting released soon along with .NET Core 3.0 and it has several new features and enhancements to give more power to… Continue reading Default Interface Implementation in C# 8.0
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