Reversing a string is a popular question in most campus hiring interviews. There could be several ways one can think of to do this. We will be looking at some of those. In this article we will not look at the Reverse method provided by the .NET libraries; we will instead try to implement it… Continue reading String Reversal In Several Ways Using C#
Author: Prakash
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
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