//The MIT License (MIT)
//http://arolibraries.codeplex.com/license
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
namespace AroLibraries.ExtensionMethods.Strings
{
publicstaticclass StringExt
{
publicstatic string Ext_Reverse(this string s)
{
if (s == null) thrownew ArgumentNullException("String is NULL");
char[] charArray = s.ToCharArray();
Array.Reverse(charArray);
returnnew string(charArray);
}
}
}