Ejemplo n.º 1
0
        // Compare contents.
        public bool Equals(Time other)
        {
            if (other is null)
            {
                return(false);
            }

            if (ReferenceEquals(this, other))
            {
                return(true);
            }

            return(Beat.Equals(other.Beat) && Subdiv.Equals(other.Subdiv));
        }