标签:get title ref 高亮 name i++ img ++ alt
第一步:下载open live writer插件,下载地址:http://www.cnblogs.com/memento/p/5995173.html
第二步:找到open live writer的安装目录,并在目录下创建文件夹Plugins
第三步:解压缩插件的压缩包Memento.OLW_V1.0.0.5.7z,并把文件都拷贝到Plugins文件夹中
第四步:右键选择每一个文件的属性,看是否有解除锁定,如果有,选择解除,斌确认
注:我的系统是win7,有解除锁定,必须解除后,插件才能使用,请注意
这样open live writer的代码高亮插件就可以使用了
插入一段代码测试效果:
1 /// <summary> 2 /// List转换成DataTable 3 /// </summary> 4 /// <typeparam name="T"></typeparam> 5 /// <param name="collection"></param> 6 /// <returns></returns> 7 public DataTable ToDataTable<T>(IEnumerable<T> collection) 8 { 9 var props = typeof(T).GetProperties(); 10 var dt = new DataTable(); 11 dt.Columns.AddRange(props.Select(p => new DataColumn(p.Name, p.PropertyType)).ToArray()); 12 if (collection.Count() > 0) 13 { 14 for (int i = 0; i < collection.Count(); i++) 15 { 16 ArrayList tempList = new ArrayList(); 17 foreach (PropertyInfo pi in props) 18 { 19 object obj = pi.GetValue(collection.ElementAt(i), null); 20 tempList.Add(obj); 21 } 22 object[] array = tempList.ToArray(); 23 dt.LoadDataRow(array, true); 24 } 25 } 26 return dt; 27 }
标签:get title ref 高亮 name i++ img ++ alt
原文地址:https://www.cnblogs.com/yangxi1081/p/9395226.html