摘要: 1. 用Type 在 website 下C#代码 //定义参数类型数组 Type[] tps = new Type[2]; tps[0] = typeof(int); tps[1] = typeof(string); //定义参数数组 object[] obj = new object[2]; obj[0] = (object)100; obj[1] = (object)"Param Example"; string UserDaoPath = System.Configuration.ConfigurationSettings.AppSettings["User 阅读全文
posted @ 2012-05-31 14:50 StupidsCat 阅读(7558) 评论(0) 推荐(0) 编辑