Horje
check if palindrome recursion in c# Code Example
check if palindrome recursion in c#
 public static bool IsPalindrome(string text)
    {
        if (text.Length <= 1)
            return true;
        else
        {
            if ( text[0] != text[ text.Length - 1 ] )
                return false;
            else
                return IsPalindrome( text.Substring( 1, text.Length-2 ) );
        }   
    } 




Csharp

Related
.net core login redirect loop Code Example .net core login redirect loop Code Example
c# datagridview double click on cell Code Example c# datagridview double click on cell Code Example
how to access asp button of gridview Code Example how to access asp button of gridview Code Example
.net 4.5 use tls 1.2 Code Example .net 4.5 use tls 1.2 Code Example
F# Code Example F# Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8