System.TimeUtils.ToSeconds C# (CSharp) 메소드

ToSeconds() 공개 정적인 메소드

public static ToSeconds ( this value ) : System.TimeSpan
value this
리턴 System.TimeSpan
        public static TimeSpan ToSeconds(this int value)
        {
            return TimeSpan.FromSeconds(value);
        }