Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
A Chat (and demo) with Ken Schaefer about IIS7
Sep 25, 2006 at 11:10 AMGary Daniels and Evan Goldring - Mock whiteboard problem
Aug 25, 2004 at 7:06 AMIs it Palendrome or Palindrome? Anyway here is my C# version using Recursion.
public bool isPalindrome(String s)
{
if ( s.Length <= 1 ) return true;
if ( s.EndsWith(s.Substring(0,1) ))
return isPalindrome( s.Substring(1, s.Length - 2 ) );
return false;
}