2008年12月27日

摘要: public string ReverseString(string message) { char[] arr = message.ToCharArray(); Array.Reverse(arr); message = new string(arr); return message; } 阅读全文

posted @ 2008-12-27 19:31 邬江-远波 阅读(245) 评论(0) 推荐(0) 编辑

摘要: (enumerationType)Eenum.parse(typeof(enumerationType),enumerationValueString); //// string myString=”nonh”; orientation myDirecion=(orientation)Enum.Parse(typeof(orientation),myString); 阅读全文

posted @ 2008-12-27 19:29 邬江-远波 阅读(221) 评论(0) 推荐(0) 编辑

2008年12月24日

摘要: using System; using System.Collections.Generic; using System.Text; namespace Ch11Ex02 { class Program { static void Main(string[] args) { string str1 = "this is a s... 阅读全文

posted @ 2008-12-24 14:12 邬江-远波 阅读(190) 评论(0) 推荐(0) 编辑