摘要: // 阅读全文
posted @ 2018-02-27 16:32 enych 阅读(1490) 评论(0) 推荐(0) 编辑
摘要: public ActionResult Index() { #region 写入Cookies HttpCookie cookie = new HttpCookie("CookieName");//初使化并设置Cookie的名称 DateTime dt = DateTime.Now; //获取当前时间 ... 阅读全文
posted @ 2018-02-27 15:47 enych 阅读(8317) 评论(2) 推荐(0) 编辑
摘要: private void button1_Click(object sender, EventArgs e) { int a = 6; int b = 66; Fun(ref a,ref b); //把a的地址和b的地址 传递过去 MessageBox.Show(a.... 阅读全文
posted @ 2018-02-27 15:13 enych 阅读(160) 评论(0) 推荐(0) 编辑