com.Mes.Dss.Entity.ScmsTableIndex.Equals C# (CSharp) Method

Equals() public method

public Equals ( object obj ) : bool
obj object
return bool
        public override bool Equals(object obj)
        {
            ScmsTableIndex another = obj as ScmsTableIndex;

            if (another == null)
            {
                return false;
            }
            else
            {
                return (this.TableName == another.TableName);
            }
        }
ScmsTableIndex