在MVC中Dictionary<string,string>如何应用到View页面中呢,例: <input type="text" name=key value="value"> 这样使用,在C中我们就能看到Dictionary<string,string> 如果是类中的一个属性如: public class aaaa { public Dictionary<string,string> D1{set;get;} }…
public class ModelConvertHelper<T> where T : new() {// 此处一定要加上new() public static IList<T> ConvertToModel(DataTable dt) { IList<T> ts = new List<T>();// 定义集合 Type type = typeof(T); // 获得此模型的类型 string tempName = ""; foreac…