char [] myArray = txtName.Text.ToCharArray();
Array.Reverse( myArray );
string strReversed = new string( myArray );
lblName.Text = strReversed;
char [] myArray = txtName.Text.ToCharArray();
Array.Reverse( myArray );
string strReversed = new string( myArray );
lblName.Text = strReversed;
0 comments:
Post a Comment