public static void main(String[] args) { List list = new ArrayList<>(); HashMap map = new HashMap<String,Object>(); map.put("name", "zhou"); map.put("age", 20); map.put("Address", "hubei"); map
转:http://blog.sina.com.cn/s/blog_659a572b0100xp5s.html 例子如下 using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using MvcApplication2.Models; using DataAccess; using System.Configuration; using S
MVC控制器向视图传递数据包含多个实体类的解决方案有很多,这里主要针对视图模型.动态模型以及Tuple三种方法进行一些总结与记录. 基础集合类:TableA namespace ViewModelStudy.Models { public class TableA { public int A { get; set; } public int B { get; set; } public int C { get; set; } } } 基础集合类:TableB namespace ViewMod