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
Aug 27, 2004 at 8:05 AMclass Processor{
internal static bool isPallindrome(string strValue){
bool result = false;
if(strValue==null)return result;
byte[] bits = System.Text.UTF8Encoding.UTF8.GetBytes(strValue);
short begin = 0, end = (short)bits.Length;
for(short x = begin, z = end; x < bits.Length / 2 ; x++, z--)
result = (bits[x]==bits[z-1]);
return result;
}
};