2008年12月27日

摘要: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.IO; using System.Drawing; using System.Drawing.I... 阅读全文

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

摘要: using System; using System.Collections.Generic; using System.Text; using System.Data.SqlClient; using System.Configuration; using System.Data; namespace FriendsInfoAdministrators.Web.sqlDB { #regi... 阅读全文

posted @ 2008-12-27 22:20 邬江-远波 阅读(403) 评论(2) 推荐(0) 编辑

摘要: using System.Windows.Forms; //MessageBox .Show (string .Format ("(long) {0} = {1}", intValue, longValue)); public class MyClass { public readonly string Name; private int intVal; public... 阅读全文

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

摘要: static int F(int a, int b) { throw声明 and try声明 if (b == 0) throw new Exception("D... 阅读全文

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

摘要: 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) 编辑