NextbusNET.Model.RouteConfig.Equals C# (CSharp) Method

Equals() public method

public Equals ( RouteConfig other ) : bool
other RouteConfig
return bool
        public bool Equals(RouteConfig other)
        {
            if (ReferenceEquals(null, other)) return false;
            if (ReferenceEquals(this, other)) return true;
            return Equals(other.Tag, Tag);
        }

Same methods

RouteConfig::Equals ( object obj ) : bool