Horje
palindrome number c# Code Example
palindrome number c#
    static bool IsPalindrome(int n)
    {
        return n.ToString() == Reverse(n.ToString());
    }

    static string Reverse(string str)
    {
        return new string(str.ToCharArray().Reverse().ToArray());
    }




Csharp

Related
asp.net model Code Example asp.net model Code Example
c# loop string array Code Example c# loop string array Code Example
c# get last array element Code Example c# get last array element Code Example
what is type unity Code Example what is type unity Code Example
C# array to string Code Example C# array to string Code Example

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