LongoMatch.Core.Store.Time.operator C# (CSharp) Method

operator() public static method

public static operator ( ) : Time
return Time
        public static Time operator *(Time t1, double t2)
        {
            return new Time { MSeconds = (int)(t1.MSeconds * t2) };
        }

Same methods

Time::operator ( ) : bool