Mercurial > silverbladetech
annotate MetroWpf/Stocks.Common/Core/ExtensionMethods.cs @ 121:8f94475d3146 tip
final code
author | stevenh7776 |
---|---|
date | Thu, 31 May 2012 15:35:26 +0100 |
parents | 6109bc268b90 |
children |
rev | line source |
---|---|
20 | 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 } |