public string Reverse( string s ) { char[ ] tab = s.ToCharArray( ); Array.Reverse( tab, 0, tab.Length ); return new string( tab ); }