摘要: CommonJsonModelAnalyzer.csusing System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConvertJosn{ public class CommonJsonModelAnalyzer { protected string _GetKey(string rawjson) { if (string.IsNullOrEmpty(rawjson)) return... 阅读全文
posted @ 2013-06-07 21:04 一千零一夜 阅读(3238) 评论(0) 推荐(0) 编辑
摘要: public delegate void MyDelegate(object sender, EventArgs e); protected void Page_Load(object sender, EventArgs e) { MyDelegate md = new MyDelegate(Button1_Click); //md(Button1, null); md(Button1, new System.EventArgs()); //MyDelegate md1 = new MyDelegate(DropDownLis... 阅读全文
posted @ 2013-06-07 20:50 一千零一夜 阅读(136) 评论(0) 推荐(0) 编辑