Esempio n. 1
0
        public bool IsSame(TDBaseArticleData other)
        {
            return
                (TDID == other.TDID &&
                 Type == other.Type &&

                 Float1 == other.Float1 &&
                 Float2 == other.Float2 &&
                 Float3 == other.Float3 &&

                 Int1 == other.Int1 &&
                 Int2 == other.Int2 &&
                 Int3 == other.Int3 &&

                 Str1 == other.Str1 &&
                 Str2 == other.Str2 &&
                 Str3 == other.Str3 &&

                 Bool1 == other.Bool1 &&
                 Bool2 == other.Bool2 &&
                 Bool3 == other.Bool3 &&

                 Long1 == other.Long1 &&
                 Long2 == other.Long2 &&
                 Long3 == other.Long3 &&

                 ArticleObjType == other.ArticleObjType);
        }
Esempio n. 2
0
 public void RemoveArticle(TDBaseArticleData data)
 {
     Datas.Remove(data.ID);
 }