public static void Main()
Console.WriteLine(i.ToString()+" "+j.ToString()+" "+retValue.ToString());
Console.WriteLine(str1.ToString()+" "+str1.Length.ToString());
retValue=IsPalindDrome(str1,0,str1.Length);
retValue=IsPalindDrome(str2,0,str2.Length);
public static int IsPalindDrome(string str,int low, int high)
if (str[low] != str[high-1])