Ejemplo n.º 1
0
        private void Form1_Load(object sender, EventArgs e)
        {
            labelTimeDesarrollo.Text = "Tiempo de desarrollo algoritmo: 0";
            long ticks = System.Environment.TickCount;

            m_code = new LoadAlgorithms().Load(LoadAlgorithms.c_Tail_Recursive_Url);
            Compile(m_code);

            TimeSpan time = new TimeSpan(System.Environment.TickCount - ticks);

            labelTimeCarga.Text = string.Format("Tiempo de carga {0}", time.ToString());
        }
Ejemplo n.º 2
0
        private void Form1_Load(object sender, EventArgs e)
        {
            labelTimeDesarrollo.Text = "Tiempo de desarrollo algoritmo: 0";
            long ticks = System.Environment.TickCount;

            m_code = new LoadAlgorithms().Load(LoadAlgorithms.c_Tail_Recursive_Url);
            Compile(m_code);

            TimeSpan time = new TimeSpan(System.Environment.TickCount - ticks);

            labelTimeCarga.Text = string.Format("Tiempo de carga {0}", time.ToString());
        }