Posted by: intelbot on: January 14, 2008
public static String Reverse(String strParam) { if(strParam.Length==1) { return strParam; } else { return Reverse(strParam.Substring(1)) + strParam.Substring(0,1); } }
Posted by: intelbot on: March 27, 2007
using System; class test{ private static void Main() { Console.WriteLine(“Is ‘ada’ Palindrome : {0}”,IsPalindrome(“ada”)); Console.ReadLine(); } public static bool IsPalindrome(String strParam) { int iLength,iHalfLength; iLength = strParam.Length – 1; iHalfLength = iLength/2; for(int iIndex=0;iIndex<=iHalfLength;iIndex++) { if(strParam.Substring(iIndex,1)!=strParam.Substring(iLength – iIndex,1)) { return false; } } return true; }}
Posted by: intelbot on: March 26, 2007
int Celsius2Fahrenheit(int Celsius){ return 9*Celsius/5+32;}limitation: what if we want to pass a floating point number?
Posted by: intelbot on: March 26, 2007
Simple string date validator. I am a big fan of maintaining a library of simple and clean helper methods. Here is a simple and clean way to verify if a string formatted date is a valid date. This allows you to encapsulate the exception handling making it easy to use and very readable – another [...]