Thursday 8 July, 2010

ALPHABET LIST

  1. protected void AlphaList()
  2. {
  3. string strReturn = "";
  4. for (int intCount = 65; intCount <= 90; intCount++)
  5. strReturn += ((char)intCount).ToString() + "
    "
    ;
  6. }

No comments:

Post a Comment