Ejemplo n.º 1
0
            public bool IsSame(Word other)
            {
                if (other == null)
                {
                    return(false);
                }

                if (other.Kind != this.Kind)
                {
                    return(false);
                }

                if (ArrayTools.IsSame(other.Prms, this.Prms, IntTools.Comp) == false)
                {
                    return(false);
                }

                return(true);
            }