IanB
Microsoft is my dream company. It would most definitely be a dream come true to find myself working at Microsoft.
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
Gary Daniels and Evan Goldring - Mock whiteboard problem
Feb 24, 2006 at 8:26 PMUsing C# 2.0....
public static bool IsPalindrome(string val)
{
char[] _chars = val.ToCharArray();
System.Array.Reverse(_chars);
string _reverseVal = new string(_chars);
return val.Equals(_reverseVal);
}