String Reversal
You must
- Write a C# Windows program that provides a textbox for the user to enter
a string
- When the text changes for this string, reverse it and display it to the
user
- You must write a function that reverses the string
- This function must be recursive
You may (for extra credit)
- Determine whether the string is a palindrome (reads the same forward and
backward) and display this to the user
- This palindrome checking function must be written recursively
My running example as shown below (with extra
credit)

and
