zoukankan      html  css  js  c++  java
  • C# 时间(几个常用时间,程序运行计时,页面运行计时)

    原帖: http://www.cnblogs.com/tity/archive/2006/08/30/490605.html

    1.DateTime

              DateTime now = System.DateTime.Now;
               now.ToString();                                                       //显示: 2006/08/30 17:31:02
               now.ToString("yyyy-mm-dd hh:MM:ss");                //显示: 2006-08-30 05:39:11
               now.ToString("yyyy-mm-dd HH:mm:ss");                //显示: 2006-08-30 17:40:50
              System.DateTime.MaxValue.ToString();                   //显示: 9999/12/31 23:59:59
              System.DateTime.MinValue.ToString();                   //显示: 0001/01/01 0:00:00
             now.ToLongDateString();                                         //显示: 2006年8月30日
             now.ToLongTimeString();                                         //显示: 17:34:23
             now.ToShortTimeString();                                         //显示: 17:34
             now.ToString() + " " + now.Millisecond.ToString();   //显示: 2006/08/30 17:35:19 484
    


               2.程序运行时间:(单位 :  毫秒)

    System.Diagnostics ;  //名称空间
                 int x = 0;
                 int nu = 0;       
                Stopwatch sw = new Stopwatch();
                sw.Start();
                //程序开始
                 for (int i = 0; i < 1000000; i++)
                {
                    x += i;
                }
                //程序结束
                sw.Stop();
                this.label1.Text += ",sum=" + x.ToString();
                MessageBox.Show(sw.ElapsedMilliseconds.ToString());
    


            3.计算一个页面执行时间:
            在Global.asax.cs文件中增加以下代码:
           

     protected void Application_BeginRequest(Object sender, EventArgs e)
            {
                Application["StartTime"] = System.DateTime.Now;
            }
            protected void Application_EndRequest(Object sender, EventArgs e)
            {
                System.DateTime startTime = (System.DateTime)Application["StartTime"];
                System.DateTime endTime = System.DateTime.Now;
                System.TimeSpan ts = endTime - startTime;
                Response.Write("页面执行所用时间:" + ts.Milliseconds + " 毫秒");
            }
  • 相关阅读:
    37. VUE — webpack 基本使用
    36.VUE — 认识 Webpack 和 安装
    4. SpringBoot配置文件—YAML语法讲解
    3. IDEA 快速创建SpringBoot程序
    6. Maven 添加 镜像一些特性
    35. JS 模块化开发
    2. SPringBoot 解析HelloWorld 程序
    1. Maven 创建 SpringBoot项目 — HelloWorld — 我是踩了非常多的坑! 才写出来的 开学不顺 但是收获很多!!!
    34. VUE 的 编译作用域 以及 slot作用域插槽(获取组件作用域中的数据)
    【洛谷 3366】最小生成树_Kruskal
  • 原文地址:https://www.cnblogs.com/herbert/p/1765163.html
Copyright © 2011-2022 走看看