コード例 #1
0
ファイル: Items.cs プロジェクト: tommyliu86/jschema
        public bool Equals(Items other)
        {
            if ((object)other == null)
            {
                return(false);
            }

            return(SingleSchema == other.SingleSchema &&
                   (Schemas == null
                        ? other.Schemas == null
                        : Schemas.HasSameElementsAs(other.Schemas)));
        }