This version works...
private static string Check4Palindrome(string inString)
{
.....
.....
return "true";
}
But, this won't. Debug info says to instantiate an object first..
private static bool Check4Palindrome(string inString)
{
.....
.....
return true;
}
I'd like to know why this is, so I can avoid further dispair!
private static string Check4Palindrome(string inString)
{
.....
.....
return "true";
}
But, this won't. Debug info says to instantiate an object first..
private static bool Check4Palindrome(string inString)
{
.....
.....
return true;
}
I'd like to know why this is, so I can avoid further dispair!