open live write 代碼高亮插件的配置和使用

第一步:下載open live writer插件,下載地址:http://www.cnblogs.com/memento/p/5995173.htmlhtml


image

第二步:找到open live writer的安裝目錄,並在目錄下建立文件夾Pluginside


image

第三步:解壓縮插件的壓縮包Memento.OLW_V1.0.0.5.7z,並把文件都拷貝到Plugins文件夾中測試


image

第四步:右鍵選擇每個文件的屬性,看是否有解除鎖定,若是有,選擇解除,斌確認spa

image

注:個人系統是win7,有解除鎖定,必須解除後,插件才能使用,請注意插件

這樣open live writer的代碼高亮插件就可使用了3d

image

插入一段代碼測試效果:code

  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         }
View Code
相關文章
相關標籤/搜索