摘要: static void Main(string[] args){ int[] cSum = new int[N]; for (int i = 0; i < cSum.Length; i++){cSum[i] = Pro_WriteNum(i);Console.WriteLine(cSum[i]);} 阅读全文
posted @ 2017-04-12 14:34 开心的柚子 阅读(307) 评论(0) 推荐(0) 编辑
摘要: 方法一: int[] intArr = new int[100]; ArrayList myList = new ArrayList(); Random rnd = new Random(); while (myList.Count < 100) { int num = rnd.Next(1, 10 阅读全文
posted @ 2017-04-12 14:25 开心的柚子 阅读(326) 评论(0) 推荐(0) 编辑
摘要: 转载文章: 首先,MVC和三层架构,是不一样的。 三层架构中,DAL(数据访问层)、BLL(业务逻辑层)、WEB层各司其职,意在职责分离。 .net的三层结构中,并没有action这个概念。 asp.net mvc 是微软新发布的一种网站开发架构。为了解决传统asp.net开发中不能分离Model, 阅读全文
posted @ 2017-04-12 11:04 开心的柚子 阅读(846) 评论(0) 推荐(0) 编辑