Code in c#
Write a recursive method called isReverse(String s1, String s2)
that accepts two strings as parameters and returns true if the two
strings contain the same sequence of characters as each other but
in the opposite order and false otherwise. • The recursive function
should ignore capitalization. (For example, the call of
isReverse("hello", "eLLoH") would return true.) • The empty string,
as well as any one letter string, should be its own reverse. Write
a driver program that...