comparison MetroWpf/Stocks.Common/Core/ExtensionMethods.cs @ 20:6109bc268b90

Latest
author adminsh@apollo
date Tue, 20 Mar 2012 13:37:46 +0000
parents
children
comparison
equal deleted inserted replaced
19:09d18d6e5f40 20:6109bc268b90
1 using System;
2
3 namespace Stocks.Common.Core
4 {
5 public static class StringHelper
6 {
7 /// <summary>
8 /// Receives string and returns the string with its letters reversed.
9 /// </summary>
10 public static string Reverse(this string s)
11 {
12 if (s == null) return null;
13 char[] arr = s.ToCharArray();
14 Array.Reverse(arr);
15 return new string(arr);
16 }
17 }
18 }