diff --git a/X10D/src/StringExtensions.cs b/X10D/src/StringExtensions.cs
index d722cd2..93920a1 100644
--- a/X10D/src/StringExtensions.cs
+++ b/X10D/src/StringExtensions.cs
@@ -258,6 +258,16 @@
return builder.ToString();
}
+ ///
+ /// Reverses the current string.
+ ///
+ /// The string to reverse.
+ /// A whose characters are that of in reverse order.
+ public static string Reverse(this string value)
+ {
+ return string.Join(string.Empty, Enumerable.Reverse(value));
+ }
+
///
/// Shuffles the characters in the string.
///