随笔分类 - C#
摘要:这里我用的python版本是Python 3.6.2(64位),php版本是PHP 7.0.12(64位),node版本是v6.11.0(64位),Go 1.8.3(64位),C# 基于.Net 4.0,lua 5.1.4 对比 python PHP nodeJS Golang C# lua 执行时
阅读全文
摘要:View Code 1 public static void GroupRows(GridView gvMerge, int cellNum) 2 { 3 int i = 0, rowSpanNum = 1; 4 while (i < gvMerge.Rows.Count - 1) 5 { 6 GridViewRow gvr = gvMerge.Rows[i]; 7 for (++i; i < gvMerge.Rows.Count; i++) 8 { 9 ...
阅读全文
摘要:将文件转换成字符串,常用于读取网站模板 /// <summary> /// 将文件转换成字符串,常用于读取网站模板 /// </summary> /// <param name="path"></param> /// <param name="isSpace"></param> /// <retur
阅读全文
摘要:1 protected void GV_GroupPurchasing_RowEditing(object sender, GridViewEditEventArgs e) 2 { 3 GV_GroupPurchasing.EditIndex = e.NewEditIndex; 4 BindData
阅读全文