Report post

Are you sure you want to report the post shown below? This will send an email to the ATVO administrators. Please include a short reason for reporting.

Users reporting for no reason may be locked out.


Post

Posted by Toni R
on
Could this work?

var tiempo = result.FastestLapTime;

public String CalcularTiempo(Int32 tiempo)
{
Int32 horas = (tiempo / 3600);
    Int32 minutos = ((tiempo-horas*3600)/60);
    Int32 segundos = tiempo-(horas*3600+minutos*60);
    return minutos.ToString() + ":" + segundos.ToString();

}

}