Horje
C# Check	whether	the	String	is	a	palindrome	or	not. Code Example
C# Check whether the String is a palindrome or not.
public static bool IsPalindrome(string str)  
{
    return str.SequenceEqual(str.Reverse());
}




Csharp

Related
Dominosteine c# Code Example Dominosteine c# Code Example
how to remove black top bar in asp.net Code Example how to remove black top bar in asp.net Code Example
getawaiter and no extension method Code Example getawaiter and no extension method Code Example
_swapbatch.foreach multiple statements c# Code Example _swapbatch.foreach multiple statements c# Code Example
how crate cron netapp Code Example how crate cron netapp Code Example

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