C# – Reverse Strings
Sometimes we might need to reverse string letters order. unfortunately, String class in .Net Framework up to version 3.5 doesn’t have a Reverse Method. here I will try to add Reverse Extension Method to String class. The idea behind string reverse is converting the string to an array of chars and then apply Array.Reverse() method… Continue reading C# – Reverse Strings