I\'m currently writing a quick solution for Euler Problem #4 where one must find the largest palindromic number from the product of two 3-digit numbers.
To identify if a
string Reverse(string s) { return new string(s.ToCharArray().Reverse().ToArray()); }