Date Time C#

using System;
class FromHoursDemo
{
    static void GenTimeSpanFromHours( double hours )
    {
        TimeSpan    interval = TimeSpan.FromHours( hours );
        string      timeInterval = interval.ToString( );
        Console.WriteLine( timeInterval );
    } 
    static void Main( )
    {
        GenTimeSpanFromHours( 24 );
    } 
}