摘要:
// 阅读全文
摘要:
public ActionResult Index() { #region 写入Cookies HttpCookie cookie = new HttpCookie("CookieName");//初使化并设置Cookie的名称 DateTime dt = DateTime.Now; //获取当前时间 ... 阅读全文
摘要:
private void button1_Click(object sender, EventArgs e) { int a = 6; int b = 66; Fun(ref a,ref b); //把a的地址和b的地址 传递过去 MessageBox.Show(a.... 阅读全文