System.TimeUtils.ToSeconds C# (CSharp) Méthode

ToSeconds() public static méthode

public static ToSeconds ( this value ) : System.TimeSpan
value this
Résultat System.TimeSpan
        public static TimeSpan ToSeconds(this int value)
        {
            return TimeSpan.FromSeconds(value);
        }