一个记录程序运行时间|一个记录程序运行时间表的控件

更新时间:2014-03-30    来源:组件控件开发    手机版     字体:

【www.bbyears.com--组件控件开发】

using System;
using System.Collections;
using System.Data;
namespace MyTools
{
      ///
      /// Summary description for TimeTest.
      ///

      public class TimeTest
      {      
            private DataTable manager = new DataTable("manager");
            private DataTable timeList = new DataTable("timeList");
            
            public TimeTest()
            {
                  #region initialize the ManagerTable to save the test cases
                  DataColumn  tempColumn = new DataColumn("name",typeof(System.String));
                  manager.Columns.Add(tempColumn);
                  tempColumn = new DataColumn("description",typeof(System.String));
                  manager.Columns.Add(tempColumn);

本文来源:http://www.bbyears.com/asp/5252.html