Reversing strings - C#
string SomeStr = “SomeStr”; char[] OrigChars = SomeStr.ToCharArray();
Array.Reverse(OrigChars);
Label1.Text = new string(OrigChars);
Array.Reverse(OrigChars);
Label1.Text = new string(OrigChars);
Notes from 1994 to 2008 were migrated here on Feb 2009 (see labels in footer). Code is design. Entrepreneurs are artists.
Comments
Post a Comment