Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.  protected string DueMonth ( string s )
  2.     {
  3.       int imonth = 0;
  4.       if ( int.TryParse ( s, out imonth ) )
  5.         return System.Globalization.CultureInfo.CurrentCulture.DateTimeFormat.GetMonthName ( imonth );
  6.       else
  7.         return UnknownLabel;
  8.     }